-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc.js
47 lines (46 loc) · 934 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
"use strict";
// https://eslint.org/docs/rules/
module.exports = {
root: true,
env: {
node: true,
es2020: true,
},
parserOptions: {
ecmaVersion: 13,
},
globals: {
sap: false,
cds: false,
SELECT: false,
INSERT: false,
UPDATE: false,
DELETE: false,
CREATE: false,
DROP: false,
},
plugins: ["jest", "node"],
extends: ["eslint:recommended", "plugin:jest/recommended", "prettier"],
rules: {
"no-unused-vars": [
"error",
{
argsIgnorePattern: "req|res|next",
},
],
"no-eval": ["error"], // security
"no-implied-eval": ["error"], // security
"no-console": ["error"], // ops
"no-throw-literal": ["error"],
"prefer-promise-reject-errors": ["error"],
strict: ["error"],
curly: ["error"],
"no-constant-condition": [
"error",
{
checkLoops: false,
},
],
"no-var": ["error"],
},
};