-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
70 lines (70 loc) · 1.74 KB
/
.eslintrc
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"extends": [
"airbnb",
"plugin:node/recommended",
"plugin:optimize-regex/all",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:security/recommended"
],
"plugins": [
"node",
"optimize-regex",
"react",
"react-hooks",
"security",
"xss"
],
"env": {
"es6": true,
"browser": true,
"node": true
},
"globals": {
"jest": true,
"expect": true,
"test": true
},
"parser": "@babel/eslint-parser",
"parserOptions": {
"allowImportExportEverywhere": true,
"sourceType": "module",
"requireConfigFile": true,
"ecmaVersion": 2020,
"ecmaFeatures": {
"jsx": true
},
"babelOptions": {
"configFile": "./.babelrc"
}
},
"rules": {
"import/no-extraneous-dependencies": [
"error", {
"devDependencies": ["test/**/*"],
"optionalDependencies": true,
"peerDependencies": false
}
],
"camelcase": 0,
"class-methods-use-this": 0,
"consistent-return": ["warn", { "treatUndefinedAsUnspecified": false }],
"global-require": 0,
"import/extensions": 0,
"import/no-cycle": 0,
"max-classes-per-file": 0,
"max-len": 0,
"no-empty": ["error", { "allowEmptyCatch": true }],
"no-param-reassign": 0,
"no-plusplus": 0,
"no-underscore-dangle": 0,
"no-unused-vars": ["error", { "varsIgnorePattern": "^_", "argsIgnorePattern": "^_", "caughtErrors": "none" }],
"node/no-unpublished-import": 0,
"node/no-unsupported-features/es-syntax": 0,
"optimize-regex/optimize-regex": "warn",
"react/jsx-key": [1, { "checkFragmentShorthand": true }],
"react/prop-types": 0,
"security/detect-non-literal-fs-filename": 0,
"security/detect-object-injection": 0
}
}