forked from tabwrangler/tabwrangler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
47 lines (47 loc) · 939 Bytes
/
.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
module.exports = {
env: {
browser: true,
es6: true,
},
globals: {
afterEach: true,
beforeEach: true,
chrome: true,
expect: true,
jest: true,
test: true,
},
extends: [
'eslint:recommended',
'plugin:flowtype/recommended',
'plugin:react/recommended',
],
parser: 'babel-eslint',
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 2015,
sourceType: 'module',
},
plugins: [
'flowtype',
'react',
],
rules: {
// Rules included in ESLint
'comma-dangle': [2, 'always-multiline'],
'consistent-return': 2,
'eqeqeq': [2, 'smart'],
'indent': [2, 2],
'max-len': [2, {'code': 100, 'ignoreUrls': true}],
'no-console': 0,
'no-multi-spaces': 2,
'no-unused-expressions': 2,
'no-var': 2,
'object-shorthand': 2,
'prefer-const': 2,
'quotes': [2, 'single', {'avoidEscape': true}],
'semi': 2,
},
};