forked from PPIO/pp.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
56 lines (54 loc) · 1.39 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
const fs = require('fs')
const prettierOptions = JSON.parse(fs.readFileSync('./.prettierrc', 'utf8'))
module.exports = {
parser: 'babel-eslint',
extends: ['standard', 'prettier'],
env: {
browser: true,
jest: true,
es6: true,
},
parserOptions: {
ecmaVersion: 6,
sourceType: 'module',
allowImportExportEverywhere: true,
},
rules: {
'prettier/prettier': ['error', prettierOptions],
'arrow-body-style': ['warn', 'as-needed'],
'arrow-parens': ['off'],
'class-methods-use-this': 'off',
'compat/compat': 'error',
'consistent-return': 'off',
'comma-dangle': ['error', 'always-multiline'],
'generator-star-spacing': 'off',
'import/newline-after-import': 'warn',
'import/no-dynamic-require': 'off',
'import/no-unresolved': 'error',
'import/no-extraneous-dependencies': 'off',
'import/prefer-default-export': 'off',
'no-console': 'off',
'no-use-before-define': 'off',
'no-multi-assign': 'off',
'promise/param-names': 'error',
'promise/always-return': 'error',
'promise/catch-or-return': 'error',
'promise/no-native': 'off',
'prefer-template': 2,
indent: [
2,
2,
{
SwitchCase: 1,
},
],
},
plugins: ['prettier', 'import', 'promise', 'compat'],
settings: {
'import/resolver': {
webpack: {
config: './build/webpack.prod.conf.js',
},
},
},
}