forked from emersonlaurentino/formal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
45 lines (42 loc) · 1.05 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
module.exports = {
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint', 'react', 'react-hooks'],
extends: [
'plugin:@typescript-eslint/recommended',
'airbnb',
'prettier',
'prettier/@typescript-eslint',
'prettier/react',
],
env: {
browser: true,
node: true,
es6: true,
jest: true,
},
settings: {
'import/resolver': {
typescript: {},
},
},
rules: {
// Base.
'comma-dangle': ['error', 'always-multiline'],
'no-console': 'warn',
'no-unused-vars': 'off',
'no-use-before-define': 'off',
quotes: ['error', 'single'],
semi: ['error', 'never'],
'spaced-comment': 'off',
// Import.
'import/prefer-default-export': 'off',
// TypeScript.
'@typescript-eslint/no-unused-vars': 'error',
'@typescript-eslint/no-use-before-define': 'off',
// React/JSX
'react/jsx-filename-extension': ['error', { extensions: ['.tsx'] }],
'react/prop-types': 'off',
'react-hooks/exhaustive-deps': 'error',
'react-hooks/rules-of-hooks': 'error',
},
}