generated from agiledev-students-spring2023/generic-project-repository
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
28 lines (28 loc) · 830 Bytes
/
.eslintrc.json
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
{
"extends": ["airbnb", "prettier", "plugin:node/recommended"],
"plugins": ["prettier"],
"rules": {
"prettier/prettier": "error",
"no-unused-vars": "warn",
"no-console": "off",
"func-names": "off",
"no-process-exit": "off",
"object-shorthand": "off",
"class-methods-use-this": "off",
"prefer-template": "off",
"radix": "off",
"global-require": "off",
"no-restricted-globals": "off",
"prefer-const": "off",
"no-undef": "off",
"node/no-unpublished-require": "off",
"no-underscore-dangle": "off",
"consistent-return": "off",
"no-param-reassign": "off",
"no-return-await": "off",
"no-shadow": "off",
"array-callback-return": "off",
"no-await-in-loop": "off",
"no-plusplus": "off"
}
}