forked from thedaviddias/Front-End-Checklist
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
36 lines (34 loc) · 789 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
// https://eslint.org/docs/user-guide/configuring
module.exports = {
root: true,
parser: 'babel-eslint',
env: {
browser: true,
es6: true,
},
// https://github.com/standard/standard/blob/master/docs/RULES-en.md
extends: [
'airbnb-base/legacy',
'plugin:flowtype/recommended',
'prettier',
'prettier/flowtype'
],
plugins: [
'flowtype',
'prettier'
],
// add your custom rules here
'rules': {
"class-methods-use-this": 0,
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
'prettier/prettier': ['error', {
'useTabs': false,
'printWidth': 80,
'tabWidth': 2,
'singleQuote': true,
'trailingComma': 'all',
'bracketSpacing': false
}]
}
}