-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
123 lines (123 loc) · 2.89 KB
/
.eslintrc.js
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
module.exports = {
env: {
browser: true,
es2021: true,
jest: true,
},
extends: [
"airbnb",
"eslint-config-prettier",
"prettier",
"plugin:react/recommended",
"eslint:recommended",
"plugin:react/recommended",
"plugin:jsx-a11y/recommended",
"plugin:react/jsx-runtime",
"plugin:react-hooks/recommended",
"plugin:jest/recommended",
"plugin:testing-library/react",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:storybook/recommended",
],
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: "latest",
sourceType: "module",
},
plugins: ["react", "@typescript-eslint", "import", "eslint-plugin-prettier"],
rules: {
// Disable no spreading parameters to react component
"react/jsx-props-no-spreading": "off",
// Prettier code style seetings
"prettier/prettier": [
"error",
{
endOfLine: "auto",
},
],
// React extensions
"react/jsx-filename-extension": [
"error",
{
extensions: [".tsx"],
},
],
// Change console to warn
"no-console": "warn",
// Ignore extension on import ts and js files
"import/extensions": [
"error",
"never",
{
js: "never",
jsx: "never",
ts: "never",
tsx: "never",
json: "always",
},
],
// Import requirements
"import/order": [
"error",
{
// Alphabetic import
alphabetize: {
caseInsensitive: true,
order: "asc",
},
// Group imports
groups: [
"builtin",
"external",
"index",
"sibling",
"parent",
"internal",
],
// Split imports on new lines
"newlines-between": "always-and-inside-groups",
},
],
// Disable export default
"import/prefer-default-export": ["off"],
// Enable import from devDep
"import/no-extraneous-dependencies": [
"error",
{
devDependencies: true,
},
],
// Turn off rules to setup them on typescript
"no-useless-constructor": "off",
// Error on useless constructor
"@typescript-eslint/no-useless-constructor": ["error"],
},
settings: {
"import/extensions": [".js", ".jsx", ".ts", ".tsx"],
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx"],
},
"import/resolver": {
typescript: {},
node: {
extensions: [".js", ".jsx", ".ts", ".tsx"],
},
},
},
overrides: [
{
files: ["**/*.stories.*", "**/*.story.*"],
rules: {
"import/no-anonymous-default-export": "off",
"react/function-component-definition": [
2,
{ namedComponents: ["function-declaration", "arrow-function"] },
],
},
},
],
};