-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc.json
27 lines (27 loc) · 1.05 KB
/
.eslintrc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {"project": "./tsconfig.json"},
"env": {"es6": true},
"ignorePatterns": ["node_modules", "build", "coverage"],
"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-module-boundary-types": "off",
"@typescript-eslint/no-unused-vars": "warn",
"@typescript-eslint/no-empty-function": "warn",
"@typescript-eslint/ban-ts-comment": "warn",
"eslint-comments/disable-enable-pair": ["error", {"allowWholeFile": true}],
"eslint-comments/no-unused-disable": "error",
"import/order": ["error", {"newlines-between": "never", "alphabetize": {"order": "asc"}}],
"sort-imports": ["error", {"ignoreDeclarationSort": true, "ignoreCase": true}]
}
}