-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.yml
43 lines (43 loc) · 944 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
env:
browser: false
commonjs: true
es6: true
jasmine: true
jest: true
# ext: '.js'
extends:
- 'plugin:jasmine/recommended'
- 'eslint:recommended'
- 'airbnb'
parserOptions:
ecmaFeatures:
experimentalObjectRestSpread: true
jsx: false
sourceType: module
plugins:
- jasmine
rules:
camelcase: 0
'arrow-body-style': 0
'react/no-multi-comp': 0
'react/require-extension': 0
'class-methods-use-this': 0
'no-underscore-dangle': 0
'consistent-return': 0
'no-multi-spaces': 0
'import/newline-after-import': 0
'no-param-reassign': 0
'no-throw-literal': 0
'no-restricted-syntax': 0
'no-console': 0
'max-len': 0
'jsx-a11y/href-no-hash': 0
'jasmine/new-line-before-expect': 0
'jasmine/new-line-between-declarations': 0
'prefer-promise-reject-errors': 0
'prefer-destructuring': 0
'object-curly-newline': 0
'no-await-in-loop': 0
'strict': 0
'no-plusplus': 0
'import/no-unresolved': 0