-
Notifications
You must be signed in to change notification settings - Fork 16
/
.eslintrc.json
25 lines (25 loc) · 1021 Bytes
/
.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
{
"root": true,
"parser": "@typescript-eslint/parser",
"env": { "es6": true },
"ignorePatterns": ["node_modules", "build", "coverage", "test", "jest.config.js", "tmp"],
"plugins": ["import", "eslint-comments"],
"extends": [
"eslint:recommended",
"plugin:eslint-comments/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:import/typescript",
"plugin:prettier/recommended"
],
"globals": { "BigInt": true, "console": true, "WebAssembly": true },
"rules": {
"@typescript-eslint/explicit-module-boundary-types": "off",
"eslint-comments/disable-enable-pair": ["error", { "allowWholeFile": true }],
"eslint-comments/no-unused-disable": "error",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": ["error"],
"@typescript-eslint/no-explicit-any": "off",
"import/order": ["error", { "newlines-between": "always", "alphabetize": { "order": "asc" } }],
"sort-imports": ["error", { "ignoreDeclarationSort": true, "ignoreCase": true }]
}
}