forked from Kloudless/file-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
42 lines (41 loc) · 1.05 KB
/
.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
// https://eslint.org/docs/user-guide/configuring
module.exports = {
root: true,
parserOptions: {
parser: 'babel-eslint',
ecmaFeatures: {
jsx: true,
},
sourceType: 'module',
},
env: {
browser: true,
commonjs: true,
es6: true,
node: true,
},
globals: {
$: 'readonly',
},
extends: [
'airbnb-base',
],
// add your custom rules here
rules: {
// allow async-await
'generator-star-spacing': 'off',
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
// allow unresolved module and extensions, because webpack will handle
// this part
'import/no-unresolved': 'off',
'import/extensions': 'off',
'import/no-extraneous-dependencies': 'off',
// allow param reassign or the param's properties
'no-param-reassign': ['error', { props: false }],
'max-len': ['error', { code: 80 }],
'operator-linebreak': 'off',
// allow prefix private functions with underscore
'no-underscore-dangle': 'off',
},
};