forked from 18F/identity-idp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
47 lines (47 loc) · 1.01 KB
/
.eslintrc
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
{
'extends': 'airbnb-base',
'parser': 'babel-eslint',
'env': {
'browser': true,
'commonjs': true,
'es6': true,
'mocha': true
},
'globals': {
'$': true,
'__DEV__': true,
'assert': true,
'chai': true,
'sinon': true,
'expect': true,
'fixture': true
},
'rules': {
'jsx-a11y/img-has-alt': 'off',
'func-names': 0,
'space-before-function-paren': 0,
'prefer-arrow-callback': 0,
'import/prefer-default-export': 'off',
'import/extensions': ['off', 'never'],
'no-param-reassign': ['off', 'never'],
},
'parserOptions': {
'ecmaVersion': 6,
'sourceType': 'module'
},
'settings': {
'import/core-modules': [
'app/components/index',
'app/utils/index',
'app/pw-toggle',
'app/form-validation',
'app/form-field-format',
'app/idv-finance-helper',
'app/radio-btn',
'app/print-personal-key',
'app/utils/ms-formatter',
'app/phone-internationalization',
'app/i18n-dropdown',
],
}
}