forked from FakeFiller/fake-filler-extension
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.eslintrc.json
72 lines (67 loc) · 2.04 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
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
71
72
{
"parser": "@typescript-eslint/parser",
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:import/typescript",
"airbnb",
"airbnb/hooks",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"plugins": ["@typescript-eslint", "react-hooks", "prettier"],
"globals": { "chrome": "readonly" },
"env": {
"browser": true,
"node": true,
"webextensions": true
},
"parserOptions": {
"project": "./tsconfig.json"
},
"settings": {
"react": {
"version": "detect"
},
"import/resolver": {
"node": {},
"webpack": {
"config": "webpack.config.ts"
}
}
},
"rules": {
"react-hooks/rules-of-hooks": "error",
"prettier/prettier": ["error"],
"@typescript-eslint/ban-ts-comment": ["off"],
"@typescript-eslint/explicit-function-return-type": ["off"],
"@typescript-eslint/no-explicit-any": ["off"],
"@typescript-eslint/ban-ts-ignore": ["off"],
"@typescript-eslint/no-var-requires": ["off"],
"@typescript-eslint/explicit-module-boundary-types": ["off"],
"no-use-before-define": "off",
"@typescript-eslint/no-use-before-define": ["error"],
"lines-between-class-members": ["error", "always", { "exceptAfterSingleLine": true }],
"class-methods-use-this": ["off"],
"import/extensions": ["off"],
"import/no-extraneous-dependencies": ["error", { "devDependencies": true }],
"import/order": [
"error",
{
"groups": ["builtin", "external", "parent", "sibling", "index"],
"newlines-between": "always-and-inside-groups",
"alphabetize": {
"order": "asc",
"caseInsensitive": false
}
}
],
"react/jsx-filename-extension": ["error", { "extensions": [".tsx", ".jsx"] }],
"react/prop-types": ["off"],
"react/jsx-props-no-spreading": ["off"],
"react/destructuring-assignment": ["off"],
"react/jsx-one-expression-per-line": ["off"],
"react/jsx-wrap-multilines": ["off"]
}
}