forked from dperezmavro/npm-statuspage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
44 lines (44 loc) · 1.3 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
module.exports = {
root: true,
parser: 'babel-eslint',
parserOptions: {
sourceType: 'module'
},
// https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
extends: 'standard',
'globals': {
window: true,
document: true
},
// add your custom rules here
'rules': {
// allow paren-less arrow functions
'arrow-parens': 0,
// allow async-await
'generator-star-spacing': 0,
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
'no-extra-semi': 1,
'no-var': 1,
'no-inner-declarations': [2,'both'],
'valid-jsdoc': [2,{'requireReturn':false,'prefer':{'returns':'return'}}],
'curly': [2,'all'],
'no-eval': 2,
'no-extend-native': [2,{'exceptions':['Object']}],
'no-new-wrappers': 2,
'no-with': 2,
'no-undef': 2,
'no-unused-vars': [2,{'args':'none'}],
'array-bracket-spacing': [2,'never',{}],
'indent': [2,2,{'SwitchCase':1}],
'no-array-constructor': 2,
'no-mixed-spaces-and-tabs': [2,'smart-tabs'],
'no-new-object': 2,
'object-curly-spacing': [2,'never',{}],
'semi': [2,'never'],
'space-before-function-paren': [2,'never'],
'max-len': [1,80,4,{'ignoreComments':true,'ignoreUrls':true}],
'no-inner-declarations': 0,
strict: 2
}
}