-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
32 lines (31 loc) · 887 Bytes
/
index.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
'use strict';
module.exports = {
extends: 'airbnb',
env: {
"browser": true
},
parser: 'babel-eslint',
parserOptions: {
"sourceType": 'module',
},
rules: {
"indent": [2, 2, { "SwitchCase": 1 }],
"require-yield": "off",
"camelcase": "off",
"radix": "off",
"max-len": "off",
"arrow-parens": "off",
"comma-dangle": "off",
"class-method-use-this": "off",
"no-restricted-syntax": "off",
"no-underscore-dangle": "off",
"no-param-reassign": "off",
"no-empty-pattern": "off",
"object-curly-newline": "off",
"prefer-destructuring": "off",
"react/jsx-filename-extension": [0],
"react/no-did-mount-set-state": "off",
"react/jsx-closing-tag-location": "off",
"react/jsx-closing-bracket-location": "off"
}
}