forked from snowflakedb/snowflake-connector-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
61 lines (61 loc) · 1.65 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
module.exports = {
'env': {
'browser': true,
'commonjs': true,
'es2021': true,
'mocha': true,
'node': true
},
'extends': 'eslint:recommended',
'overrides': [
{
'files': ['samples/*.js'],
'rules': {
'no-console': ['warn'],
}
}
],
'parserOptions': {
'ecmaVersion': 'latest'
},
'rules': {
'array-bracket-spacing': ['error'],
'arrow-spacing': ['error'],
'block-spacing': ['error'],
'brace-style': ['error', '1tbs'],
'camelcase': ['error'],
'comma-spacing': ['error'],
'curly': ['error', 'all'],
'eqeqeq': ['error', 'always', { 'null': 'ignore' }],
'indent': ['error', 2],
'key-spacing': ['error'],
'keyword-spacing': ['error'],
'linebreak-style': ['error', 'unix'],
'no-async-promise-executor': ['error'],
'no-console': ['error', { 'allow': ['warn', 'error'] }],
'no-empty': ['error'],
'no-ex-assign': ['error'],
'no-extra-semi': ['error'],
'no-inner-declarations': ['error'],
'no-loss-of-precision': ['error'],
'no-mixed-spaces-and-tabs': ['error'],
'no-prototype-builtins': ['error'],
'no-redeclare': ['error'],
'no-undef': ['error'],
'no-unused-vars': ['error'],
'no-useless-catch': ['error'],
'no-useless-escape': ['error'],
'no-var': ['error'],
'object-curly-spacing': ['error', 'always'],
'prefer-const': ['error'],
'quotes': ['error', 'single'],
'semi': ['error', 'always'],
'semi-spacing': ['error'],
'space-before-function-paren': ['error', {
'anonymous': 'always',
'named': 'never',
'asyncArrow': 'always',
}],
'space-infix-ops': ['error'],
}
};