forked from webaverse-studios/webaverse
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc.json
53 lines (53 loc) · 1.44 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
44
45
46
47
48
49
50
51
52
53
{
"root": true,
"extends": ["semistandard", "eslint:recommended", "plugin:react/recommended", "prettier"],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"settings": {
"react": {
"version": "detect"
}
},
"globals": { "webkitSpeechRecognition": false },
"ignorePatterns": [
".next",
"*.wasm.js",
"packages/*",
"node_modules",
"node_modules/*"
],
"rules": {
"react/prop-types": "off",
"camelcase": "off",
"no-tabs": "off",
"no-debugger": "off",
"prefer-regex-literals": "off",
"promise/param-names": "off",
"prefer-const": "warn",
"no-prototype-builtins": "off",
"react/display-name": "off",
"no-lone-blocks": "off",
"eol-last": ["error", "never"],
"no-unused-vars": ["warn"],
"no-useless-constructor": "off",
"comma-dangle": ["warn", "always-multiline"],
"object-curly-spacing": ["error", "never"],
"linebreak-style": 0,
"no-inner-declarations": ["off"],
"no-case-declarations": ["off"],
"no-cond-assign": ["off"],
"new-cap": ["off"],
"no-useless-escape": ["off"],
"react/no-unescaped-entities": ["off"],
"space-in-parens": ["error", "never"],
"arrow-parens": ["warn", "as-needed"],
"number-literal-case": "off"
},
"env": {
"browser": true,
"es2021": true,
"jest": true
}
}