-
Notifications
You must be signed in to change notification settings - Fork 131
/
.eslintrc.cjs
72 lines (72 loc) · 1.6 KB
/
.eslintrc.cjs
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
module.exports = {
env: {
browser: true,
es2021: true,
webextensions: true,
},
extends: [
"plugin:react/recommended",
"airbnb",
"plugin:prettier/recommended",
"eslint-config-prettier",
],
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: "latest",
sourceType: "module",
},
globals: {
GMTypes: "readonly",
GMSend: "readonly",
},
plugins: ["react", "@typescript-eslint", "prettier"],
rules: {
"no-restricted-syntax": "off",
"react/require-default-props": "off",
"react/jsx-filename-extension": [1, { extensions: [".tsx"] }],
"no-unused-expressions": ["error", { allowShortCircuit: true }],
"react/jsx-props-no-spreading": "off",
"import/extensions": [
"error",
"ignorePackages",
{
ts: "never",
tsx: "never",
},
],
"no-use-before-define": "off",
"no-param-reassign": "off",
"no-bitwise": "off",
"class-methods-use-this": "off",
"@typescript-eslint/no-use-before-define": ["error"],
"react/function-component-definition": [
2,
{
namedComponents: ["function-declaration", "arrow-function"],
},
],
"@typescript-eslint/no-unused-vars": [
2,
{
args: "none",
},
],
},
settings: {
"import/resolver": {
node: {
extensions: [".js", ".jsx", ".ts", ".tsx"],
},
alias: {
map: [
["@App", "./src/"],
["@Pkg", "./pkg/"],
],
extensions: [".js", ".jsx", ".ts", ".tsx"],
},
},
},
};