forked from Codex-/await-remote-run
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
61 lines (61 loc) · 1.63 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
54
55
56
57
58
59
60
61
{
"plugins": ["jest", "@typescript-eslint"],
"extends": ["plugin:github/recommended", "prettier"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 10,
"sourceType": "module",
"project": "./tsconfig.json"
},
"ignorePatterns": [
"coverage",
"dist",
"esbuild.config.mjs",
"jest.config.ts"
],
"env": {
"node": true,
"es6": true,
"jest/globals": true
},
"rules": {
"@typescript-eslint/await-thenable": "warn",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-floating-promises": [
"warn",
{ "ignoreIIFE": true, "ignoreVoid": false }
],
"@typescript-eslint/no-shadow": ["error"],
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/no-unused-vars": [
"warn",
{ "argsIgnorePattern": "^_" }
],
"camelcase": "off",
"filenames/match-regex": "off",
"i18n-text/no-en": "off",
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true,
"optionalDependencies": true,
"peerDependencies": true
}
],
"import/no-namespace": "off",
"import/order": "warn",
"import/prefer-default-export": "off",
"no-console": ["warn"],
"no-param-reassign": "off",
"no-plusplus": "off",
"no-shadow": "off",
"no-unused-vars": "off",
"object-shorthand": "off",
"prefer-template": "off",
"prettier/prettier": "warn",
"radix": ["error", "as-needed"],
"sort-imports": "off"
}
}