forked from ember-cli/ember-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
72 lines (59 loc) · 1.29 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
'use strict';
module.exports = {
root: true,
parserOptions: {
ecmaVersion: 6,
},
plugins: ['node', 'prettier'],
extends: ['eslint:recommended', 'plugin:node/recommended', 'prettier'],
env: {
browser: false,
node: true,
es6: true,
},
globals: {},
rules: {
/*** Possible Errors ***/
'no-console': 0,
'no-template-curly-in-string': 2,
'no-unsafe-negation': 2,
/*** Best Practices ***/
curly: 2,
eqeqeq: 2,
'guard-for-in': 0,
'no-caller': 2,
'no-eq-null': 2,
'no-eval': 2,
'no-new': 0,
'no-unused-expressions': [
2,
{
allowShortCircuit: true,
allowTernary: true,
},
],
'wrap-iife': 0,
yoda: 2,
/*** Strict Mode ***/
strict: [2, 'global'],
/*** Variables ***/
'no-undef': 2,
'no-unused-vars': 2,
'no-use-before-define': [2, 'nofunc'],
/*** Stylistic Issues ***/
camelcase: 2,
'new-cap': [2, { properties: false }],
'no-array-constructor': 2,
'no-bitwise': 2,
'no-lonely-if': 2,
'no-plusplus': 0,
'no-unneeded-ternary': 2,
/*** ECMAScript 6 ***/
'no-useless-computed-key': 2,
'no-var': 2,
'object-shorthand': 2,
'prefer-template': 2,
'symbol-description': 2,
'prettier/prettier': 'error',
},
};