forked from sachinchoolur/jquery-to-javascript-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
29 lines (29 loc) · 893 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
29
{
"extends": [
"airbnb", // Enables eslint-plugin-prettier and eslint-config-prettier. This will display prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array.
"plugin:prettier/recommended"
],
"plugins": ["prettier"],
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module" // Allows for the use of imports
},
"env": {
"es6": true,
"browser": true,
"node": true
},
"rules": {
// enable additional rules
"prettier/prettier": "off",
"consistent-return": 0,
"indent": ["off", 4],
"no-param-reassign": "off",
"no-continue": "off",
"no-use-before-define": "off",
"no-plusplus": "off",
"no-cond-assign": "off",
"no-restricted-syntax": "off",
"no-tabs": "off"
}
}