-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
49 lines (49 loc) · 1.18 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
module.exports = {
extends: ['airbnb', 'prettier'],
parser: 'babel-eslint',
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 2018,
sourceType: 'module',
},
env: {
browser: true,
es6: true,
node: true,
},
plugins: ['prettier', 'react', 'jsx-a11y', 'import'],
settings: {
'import/resolver': {
'babel-module': {},
},
},
rules: {
curly: 'off',
'import/no-extraneous-dependencies': [
'error',
{
devDependencies: ['.serverless_plugins/**', 'dev/**'],
},
],
'import/prefer-default-export': 'off',
'linebreak-style': ['error', 'unix'],
'max-len': ['error', { code: 100, ignoreUrls: true }],
'no-console': ['error', { allow: ['debug', 'info', 'warn', 'error'] }],
'prefer-destructuring': 'off',
'prettier/prettier': 'error',
quotes: ['error', 'single'],
'react/destructuring-assignment': 'off',
'react/forbid-prop-types': 'off',
'react/jsx-curly-brace-presence': 'off',
'react/jsx-filename-extension': [
'error',
{
extensions: ['.js', '.jsx'],
},
],
semi: ['error', 'never'],
'react/require-default-props': 'off',
},
}