-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path.eslintrc.js
90 lines (89 loc) · 2.53 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
module.exports = {
parser: 'babel-eslint',
parserOptions: {
sourceType: 'module',
ecmaVersion: 6,
ecmaFeatures: {
arrowFunctions: true,
blockBindings: true,
classes: true,
defaultParams: true,
destructuring: true,
forOf: true,
modules: true,
objectLiteralComputedProperties: true,
objectLiteralDuplicateProperties: true,
objectLiteralShorthandMethods: true,
objectLiteralShorthandProperties: true,
regexUFlag: true,
regexYFlag: true,
restParams: true,
spread: true,
superInFunctions: true,
templateStrings: true,
unicodeCodePointEscapes: true,
globalReturn: true,
jsx: true,
experimentalObjectRestSpread: true
}
},
env: {
browser: true,
es6: true,
node: true
},
rules: {
'arrow-body-style': 2,
'arrow-parens': [2, 'as-needed'],
'comma-dangle': [2, 'never'],
'no-cond-assign': 2,
'no-dupe-args': 2,
'no-dupe-keys': 2,
'no-duplicate-case': 2,
'no-empty-character-class': 2,
'no-empty': 2,
'no-ex-assign': 2,
'no-extra-boolean-cast': 2,
'no-extra-parens': 2,
'no-extra-semi': 2,
'no-func-assign': 2,
'no-inner-declarations': 2,
'no-irregular-whitespace': 2,
'no-negated-in-lhs': 2,
'no-obj-calls': 2,
'no-regex-spaces': 2,
'no-sparse-arrays': 2,
'no-unexpected-multiline': 2,
'no-unreachable': 2,
'no-unused-vars': [2, {'vars': 'all', 'args': 'after-used', 'varsIgnorePattern': '^React$'}],
'use-isnan': 2,
'valid-jsdoc': [2, {
preferType: {
object: 'Object',
function: 'Function',
array: 'Array',
Number: 'number',
String: 'string',
Boolean: 'boolean',
Null: 'null',
Symbol: 'symbol',
Undefined: 'undefined'
},
requireReturn: false,
requireParamDescription: false,
requireReturnDescription: false
}],
'valid-typeof': 2,
'react/jsx-uses-vars': 2,
'react/jsx-uses-react': 2
},
plugins: [
'react'
],
settings: {
react: {
pragma: 'React',
version: '15.4.1'
}
}
};