forked from bemusic/bemuse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.yml
51 lines (51 loc) · 927 Bytes
/
.eslintrc.yml
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
51
extends:
- standard
- standard-react
- ./.eslintrc.config.import.js
- prettier
- prettier/react
- prettier/standard
parserOptions:
ecmaVersion: 6
sourceType: module
jsx: true
ecmaFeatures:
jsx: true
env:
browser: true
node: true
es6: true
globals:
mocha: false
describe: false
it: false
expect: false
beforeEach: false
afterEach: false
before: false
after: false
xdescribe: false
xit: false
sinon: false
BemuseLogger: false
parser: '@typescript-eslint/parser'
plugins:
- react
rules:
react/prop-types: warn
react/jsx-no-bind: off
no-mixed-operators: off
node/no-deprecated-api: warn
no-sequences: off
import/named: warn
overrides:
- files:
- '**/*.ts'
- '**/*.tsx'
rules:
no-undef: off
no-unused-vars: off
no-use-before-define: off
import/no-unresolved: off
import/export: off
no-useless-constructor: off