49 lines
1.3 KiB
JSON
49 lines
1.3 KiB
JSON
|
{
|
||
|
"root": true,
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"parserOptions": { "project": "./tsconfig.json" },
|
||
|
"env": {
|
||
|
"es6": true,
|
||
|
"node": true,
|
||
|
"mocha": true,
|
||
|
"browser": true
|
||
|
},
|
||
|
"ignorePatterns": ["node_modules", "build", "coverage", "proto"],
|
||
|
"plugins": ["import", "eslint-comments", "functional"],
|
||
|
"extends": [
|
||
|
"eslint:recommended",
|
||
|
"plugin:eslint-comments/recommended",
|
||
|
"plugin:@typescript-eslint/recommended",
|
||
|
"plugin:import/typescript",
|
||
|
"prettier",
|
||
|
"prettier/@typescript-eslint"
|
||
|
],
|
||
|
"globals": { "BigInt": true, "console": true, "WebAssembly": true },
|
||
|
"rules": {
|
||
|
"@typescript-eslint/explicit-function-return-type": ["error"],
|
||
|
"@typescript-eslint/explicit-module-boundary-types": "off",
|
||
|
"eslint-comments/disable-enable-pair": [
|
||
|
"error",
|
||
|
{ "allowWholeFile": true }
|
||
|
],
|
||
|
"eslint-comments/no-unused-disable": "error",
|
||
|
"import/order": [
|
||
|
"error",
|
||
|
{ "newlines-between": "always", "alphabetize": { "order": "asc" } }
|
||
|
],
|
||
|
"no-constant-condition": ["error", { "checkLoops": false }],
|
||
|
"sort-imports": [
|
||
|
"error",
|
||
|
{ "ignoreDeclarationSort": true, "ignoreCase": true }
|
||
|
]
|
||
|
},
|
||
|
"overrides": [
|
||
|
{
|
||
|
"files": ["*.spec.ts", "**/test_utils/*.ts"],
|
||
|
"rules": {
|
||
|
"@typescript-eslint/no-non-null-assertion": "off"
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|