generated from itw-creative-works/ultimate-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
executable file
·49 lines (44 loc) · 1.06 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
43
44
45
46
47
48
49
module.exports = {
'extends': ['eslint:recommended', 'google'],
'env': {
// For more environments, see here: http://eslint.org/docs/user-guide/configuring.html#specifying-environments
'browser': true,
// 'es6': true,
'node': true
},
"parserOptions": {
'sourceType': 'module',
"ecmaVersion": 8,
},
'rules': {
// Frasco default rules
// For more rules, see here: http://eslint.org/docs/rules/
'no-var': 'off',
'require-jsdoc': 'off',
// Master rules
'no-console': 'off',
'no-unused-vars': 'off',
'vars-on-top': 'off',
'max-len': 'off',
'padded-blocks': 'off',
'comma-spacing': 'off',
'comma-dangle': 'off',
'space-before-function-paren': 'off',
'new-cap': 'off',
'operator-linebreak': 'off',
'indent': 'off',
// App rules
},
'globals': {
'Manager': true,
'Configuration': true,
'Libraries': true,
// 'firebase': true,
// 'Firebase': true,
// 'lazysizes': true,
// 'Lazysizes': true,
},
// 'parserOptions': {
// 'sourceType': 'module'
// }
}