forked from nathandunn/GenomeFeatureComponent
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.eslintrc.js
56 lines (55 loc) · 1.16 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 errorInProduction = process.env.NODE_ENV === 'production' ? 'error' : 'off';
const path = require('path');
module.exports = {
root: true,
env: {
node: true,
browser: true
},
plugins: [
'import',
],
extends: [
// 'plugin:import/errors',
// 'plugin:import/warnings',
'standard',
],
rules: {
'comma-dangle': 0,
'quotes': 0,
'semi': 0,
'no-trailing-spaces': 0,
'object-curly-spacing': 0,
'padded-blocks': 0,
'indent': 0,
'space-before-function-paren': 0,
'space-before-blocks': 0,
'brace-style': 0,
'no-unused-vars': 0,
'no-multi-spaces': 0,
'no-unused-expressions': 0,
'comma-spacing': 0,
'space-infix-ops': 0,
'no-multiple-empty-lines': 0,
'space-in-parens': 0,
'camelcase': 0,
'spaced-comment': 0,
'keyword-spacing': 0,
'eol-last': 0,
'no-redeclare': 0,
'key-spacing': 0,
'no-useless-constructor': 0,
'arrow-spacing': 0,
'no-undef': 0,
'standard/object-curly-even-spacing': 0,
'no-new': 0,
'block-spacing': 0,
'semi-spacing': 0,
'eqeqeq': 0,
},
parserOptions: {
parser: 'babel-eslint'
},
settings: {
},
};