-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
eslint.config.js
72 lines (71 loc) · 1.84 KB
/
eslint.config.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import globals from "globals";
import jsPlugin from "@eslint/js";
import tsPlugin from "typescript-eslint";
import prettierOverrides from "eslint-config-prettier";
import prettierRules from "eslint-plugin-prettier/recommended";
import unicornPlugin from "eslint-plugin-unicorn";
import allowedDepsPlugin from "eslint-plugin-allowed-dependencies";
export default tsPlugin.config(
{
languageOptions: { globals: globals.node },
plugins: {
unicorn: unicornPlugin,
allowed: allowedDepsPlugin,
},
},
jsPlugin.configs.recommended,
tsPlugin.configs.recommended,
prettierOverrides,
prettierRules,
// Things to turn off globally
{ ignores: ["dist/", "coverage/"] },
{
rules: {
"no-empty": ["error", { allowEmptyCatch: true }],
"no-empty-pattern": ["error", { allowObjectPatternsAsParameters: true }],
},
},
// Things to turn on globally
{
rules: {
"unicorn/prefer-node-protocol": "error",
},
},
// For the sources
{
files: ["src/*.ts"],
rules: {
"allowed/dependencies": "error",
"@typescript-eslint/no-empty-object-type": [
"error",
{ allowWithName: "LoggerOverrides" },
],
},
},
// For tests
{
files: ["tests/**/*.ts", "src/*.spec.ts"],
rules: {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-empty-object-type": "warn",
"allowed/dependencies": "off",
},
},
// For Async API
{
files: ["src/async-api/*.ts"],
rules: {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/no-empty-object-type": "off",
},
},
// For generated code
{
files: ["example/example-client.ts", "tests/**/quick-start.ts"],
rules: {
"@typescript-eslint/no-namespace": "off",
"prettier/prettier": "off",
},
},
);