forked from Ziv-Barber/officegen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
50 lines (48 loc) · 821 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
48
49
50
const fs = require('fs')
const path = require('path')
const prettierOptions = JSON.parse(
fs.readFileSync(path.resolve(__dirname, '.prettierrc'), 'utf8')
)
module.exports = {
parser: 'babel-eslint',
extends: [
'standard',
'prettier',
'prettier/flowtype',
'prettier/react',
'prettier/standard',
'plugin:flowtype/recommended'
],
parserOptions: {
ecmaVersion: 6,
sourceType: 'module',
ecmaFeatures: {
jsx: true
}
},
rules: {
'prettier/prettier': ['error', prettierOptions],
camelcase: 0,
'new-cap': 0,
indent: [
2,
2,
{
SwitchCase: 1
}
]
},
parserOptions: {},
plugins: [
'prettier',
'flowtype'
],
env: {
mocha: true,
browser: true,
node: true,
es6: true
},
settings: {
}
}