-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.json
91 lines (91 loc) · 1.77 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"env": {
"browser": true,
"commonjs": true,
"jest": true,
"es6": true
},
"extends": [
"eslint:recommended",
"next",
// "plugin:storybook/recommended"
"prettier"
],
"plugins": [
"eslint-plugin-prettier",
"unused-imports"
],
"ignorePatterns": [
"node_modules/",
".next/"
],
"settings": {
"react": {
"pragma": "React",
"version": "18"
}
},
"parserOptions": {
"sourceType": "module",
"project": "./tsconfig.json",
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
}
},
"rules": {
"no-undef": "error",
"no-unused-vars": 0,
"unused-imports/no-unused-imports": "error",
"indent": [
"off",
2,
{
"SwitchCase": 1,
"flatTernaryExpressions": true
}
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single",
{
"avoidEscape": true,
"allowTemplateLiterals": false
}
],
"semi": [
"error",
"never"
],
"react/prop-types": 0,
"react/no-unknown-property": 0,
"no-mixed-spaces-and-tabs": 0,
"no-console": 0,
"no-irregular-whitespace": 0,
"prettier/prettier": [
"error",
{
"arrowParens": "avoid",
"bracketSpacing": true,
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"bracketSameLine": false,
"jsxSingleQuote": false,
"parser": "typescript",
"printWidth": 110,
"proseWrap": "preserve",
"requirePragma": false,
"quoteProps": "preserve",
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
]
}
}