forked from Resetete/tinymce-iconfonts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
31 lines (31 loc) · 792 Bytes
/
.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
module.exports = {
extends: [
'eslint:recommended'
],
parserOptions: {
parser: 'babel-eslint',
sourceType: 'module'
},
env: {
amd: true,
browser: true,
es6: true,
node: true
},
rules: {
'arrow-parens': ['warn', 'as-needed'],
'comma-dangle': ['warn'],
'eqeqeq': ['warn'],
'indent': ['warn', 2, { 'SwitchCase': 1 }],
'keyword-spacing': ['error', { 'before': true }],
'linebreak-style': ['error', 'unix'],
'no-console': ['off'],
'no-unused-vars': ['warn', { 'vars': 'all', 'args': 'after-used' }],
'object-shorthand': ['warn', 'properties'],
'prefer-arrow-callback': ['warn'],
'prefer-const': ['warn'],
'quotes': ['warn', 'single'],
'semi': ['error', 'always'],
'strict': ['warn', 'never']
}
};