-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.eslintrc.js
More file actions
39 lines (39 loc) · 799 Bytes
/
.eslintrc.js
File metadata and controls
39 lines (39 loc) · 799 Bytes
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
28
29
30
31
32
33
34
35
36
37
38
39
module.exports = {
env: {
browser: true,
jest: true,
},
extends: [
"firstandthird",
"plugin:import/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"prettier",
],
ignorePatterns: ["*.cjs"],
parser: "@typescript-eslint/parser",
parserOptions: {
tsconfigRootDir: __dirname,
project: ["./tsconfig.json"],
},
plugins: [
"import",
"compat",
"jest",
"@typescript-eslint/eslint-plugin",
"tsdoc",
],
root: true,
rules: {
"compat/compat": 2,
"@typescript-eslint/no-explicit-any": "off",
"tsdoc/syntax": "warn",
},
settings: {
"import/resolver": {
node: {
extensions: [".js", ".jsx", ".ts", ".tsx"],
},
},
},
};