forked from acornjs/acorn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
53 lines (52 loc) · 1.18 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
"use strict"
module.exports = {
extends: [
"eslint:recommended",
"standard",
"plugin:import/errors",
"plugin:import/warnings"
],
globals: {
BigInt: false,
Packages: false
},
overrides: [
{
files: ["acorn/src/bin/*.js", "bin/generate-identifier-regex.js"],
rules: {
"no-console": "off"
}
}
],
plugins: ["eslint-plugin-import"],
rules: {
curly: "off",
eqeqeq: ["error", "always", {null: "ignore"}],
indent: [
"error",
2,
{
SwitchCase: 0,
VariableDeclarator: 2,
CallExpression: {arguments: "off"}
}
],
"new-parens": "off",
"no-case-declarations": "off",
"no-cond-assign": "off",
"no-console": ["error", {allow: ["warn", "error"]}],
"no-fallthrough": "off",
"no-labels": "off",
"no-mixed-operators": "off",
"no-return-assign": "off",
"no-unused-labels": "error",
"no-var": "error",
"object-curly-spacing": ["error", "never"],
"object-shorthand": "off",
"one-var": "off",
"prefer-const": "off",
quotes: ["error", "double"],
"semi-spacing": "off",
"space-before-function-paren": ["error", "never"]
}
}