forked from daymade/Twitter-Block-Porn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
60 lines (60 loc) · 1.17 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
module.exports = {
root: true,
env: {
node: false
},
parserOptions: {
ecmaVersion: 2021
},
rules: {
'no-console': 'warn',
'no-debugger': 'warn',
'no-unused-vars': [
'warn',
{
vars: 'all',
args: 'after-used',
ignoreRestSiblings: true,
argsIgnorePattern: '^_'
}
],
semi: [
'warn',
'never',
{
beforeStatementContinuationChars: 'any'
}
],
'quote-props': ['warn', 'as-needed'],
indent: ['warn', 2],
'space-before-function-paren': ['warn', 'always'],
'space-before-blocks': ['warn', 'always'],
'space-infix-ops': 'warn',
'key-spacing': [
'warn',
{
beforeColon: false,
afterColon: true,
mode: 'strict'
}
],
'comma-spacing': [
'warn',
{
before: false,
after: true
}
],
'arrow-spacing': [
'warn',
{
before: true,
after: true
}
],
'eol-last': ['warn', 'always'],
'prefer-const': 'error',
'no-restricted-syntax': ['error', 'IfStatement[consequent.type!="BlockStatement"]'],
quotes: ['error', 'single']
}
}