forked from devcareer/code-jammers-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
43 lines (42 loc) · 1.09 KB
/
.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"root": true,
"extends": "airbnb-base",
"env": {
"node": true,
"es6": true,
"mocha": true
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 2015,
"sourceType": "module",
"allowImportExportEverywhere": true
},
"rules": {
"linebreak-style": 0,
"quotes": ["error", "double"],
"semi": ["error", "always"],
"no-unused-vars":"off",
"no-plusplus":"off",
"no-undef":"off",
"comma-dangle":"off",
"consistent-return":"off",
"no-tabs":"off",
"prefer-const":"off",
"max-len":"off",
"global-require":"off",
"import/no-unresolved":"off",
"import/prefer-default-export":"off",
"import/no-dynamic-require":"off",
"no-console": "off",
"camelcase":"off",
"import/no-extraneous-dependencies":["error", {"devDependencies": true}],
"arrow-parens": [2, "as-needed"],
"no-useless-catch": "off",
"no-use-before-define": ["error", { "functions": false, "classes": false }],
"require-jsdoc": 0,
"no-useless-concat": 0,
"operator-linebreak": 0,
"valid-jsdoc": "error"
}
}