forked from fossasia/open-event-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
115 lines (114 loc) · 3.25 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
module.exports = {
root: true,
parser: 'babel-eslint',
parserOptions: {
ecmaVersion: 2017,
sourceType: 'module'
},
plugins: [
'ember'
],
extends: [
'eslint:recommended',
'plugin:ember-suave/recommended'
],
env: {
browser: true
},
rules: {
'arrow-spacing': 'error',
'no-var': 'error',
'no-useless-escape': 'off',
'space-before-blocks': 'error',
'comma-dangle': ['error', 'never'],
'space-in-parens': ['error', 'never'],
'space-before-function-paren': ['error', 'never'],
'comma-spacing': ['error', { 'before': false, 'after': true }],
'semi': ['error', 'always', {'omitLastInOneLineBlock': true}],
'semi-spacing': ['error', {'before': false, 'after': true}],
'keyword-spacing': ['error', { 'before': true, 'after': true }],
'spaced-comment': ['error', 'always'],
'object-shorthand': ['error', 'always'],
'dot-notation': 'error',
'arrow-parens': ['error', 'as-needed'],
'object-curly-spacing': ['error', 'always'],
'space-infix-ops': 'error',
'no-multiple-empty-lines': ['error', { 'max': 2, 'maxEOF': 1 }],
'key-spacing': [
'error', {
'align': {
'beforeColon': true,
'afterColon': true,
'on': 'colon'
}
}
],
'operator-linebreak': ['error', 'before'],
'array-bracket-spacing': ['error', 'never'],
'no-trailing-spaces': 'error',
'brace-style': ['error', '1tbs', { 'allowSingleLine': true }],
'max-statements-per-line': ['error', { 'max': 2 }],
'quotes': ['error', 'single'],
'indent': [
'error', 2, {
"FunctionExpression": {"parameters": "first"},
"FunctionDeclaration": {"parameters": "first"},
"MemberExpression": 1,
"SwitchCase": 1,
"outerIIFEBody": 0,
"VariableDeclarator": { "var": 2, "let": 2, "const": 3 }
}
],
'max-len': 'off',
'no-console': ["error", { allow: ["warn", "error"] }],
'prefer-template': 'error',
'camelcase': 'off',
'new-cap': 'off',
'eqeqeq': ['error', 'smart'],
'one-var': 'off',
'ember-suave/no-const-outside-module-scope': 'off',
'ember-suave/require-access-in-comments': 'off',
'ember/no-get': 'error',
'ember/no-get-properties': 'error',
},
globals: {
module : true,
process : true,
wysihtml5 : true,
palette : true,
Uint8Array : true,
require : true,
Promise : true
},
overrides: [
// node files
{
files: [
'.eslintrc.js',
'.template-lintrc.js',
'ember-cli-build.js',
'testem.js',
'blueprints/*/index.js',
'config/**/*.js',
'lib/*/index.js',
'server/**/*.js'
],
parserOptions: {
sourceType: 'script',
ecmaVersion: 2015
},
env: {
browser: false,
node: true
},
plugins: ['node'],
rules: Object.assign({}, require('eslint-plugin-node').configs.recommended.rules, {
// add your custom rules and overrides for node files here
// this can be removed once the following is fixed
// https://github.com/mysticatea/eslint-plugin-node/issues/77
'node/no-unpublished-require': 'off',
'node/no-extraneous-require': 'off'
})
}
]
};