-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
53 lines (52 loc) · 1.07 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
// required packages
// @typescript-eslint
// prettier
// eslint-config-airbnb
// eslint-config-prettier
// eslint-plugin-prettier
// eslint-plugin-react
// eslint-plugin-jsx-a11y
// eslint-plugin-import
// eslint-plugin-react-hooks
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
sourceType: 'module',
},
env: {
es6: true,
browser: true,
},
extends: ['airbnb', 'plugin:prettier/recommended'],
plugins: ['@typescript-eslint', 'react', 'jsx-a11y', 'react-hooks', 'import'],
settings: {
'import/extensions': ['.js', '.jsx', '.ts', '.tsx'],
'import/resolver': {
node: {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
},
},
},
rules: {
'prettier/prettier': [
'error',
{
printWidth: 120,
semi: true,
singleQuote: true,
trailingComma: 'es5',
},
],
'react/prop-types': [0],
'import/extensions': [
'error',
'always',
{
js: 'never',
jsx: 'never',
ts: 'never',
tsx: 'never',
},
],
},
};