-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
eslint.config.js
105 lines (103 loc) · 2.88 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
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";
const peformanceConcerns = [
{
selector: "ImportDeclaration[source.value=/assert/]", // #2169
message: "assert is slow, use throw",
},
{
selector: "MemberExpression[object.name='process'][property.name='env']", // #2144
message: "Reading process.env is slow and must be memoized",
},
{
selector: "CallExpression > Identifier[name='toPairs']", // #2168
message: "R.toPairs() is 1.1x slower than Object.entries()",
},
{
selector:
"CallExpression[callee.name='keys'], CallExpression[callee.name='keysIn']", // #2168
message: "R.keys() and keysIn() are 1.2x slower than Object.keys()",
},
{
selector: "CallExpression[callee.property.name='flatMap']", // #2209
message: "flatMap() is about 1.3x slower than R.chain()",
},
];
export default tsPlugin.config(
{
languageOptions: { globals: globals.node },
plugins: {
unicorn: unicornPlugin,
allowed: allowedDepsPlugin,
},
},
jsPlugin.configs.recommended,
tsPlugin.configs.recommended,
prettierOverrides,
prettierRules,
{ name: "globally/ignored", ignores: ["dist/", "coverage/", "migration/"] },
{
name: "globally/disabled",
rules: {
"no-empty": ["error", { allowEmptyCatch: true }],
"no-empty-pattern": ["error", { allowObjectPatternsAsParameters: true }],
},
},
{
name: "globally/enabled",
rules: {
curly: ["warn", "multi-or-nest", "consistent"],
"unicorn/prefer-node-protocol": "error",
},
},
{
name: "source/all",
files: ["src/*.ts"],
rules: {
"allowed/dependencies": ["error", { typeOnly: ["eslint", "prettier"] }],
"no-restricted-syntax": ["warn", ...peformanceConcerns],
},
},
{
name: "source/plugin",
files: ["src/zod-plugin.ts"],
rules: {
"@typescript-eslint/no-unused-vars": "off",
},
},
{
name: "source/migration",
files: ["src/migration.ts"],
rules: {
"allowed/dependencies": [
"error",
{ ignore: ["^@typescript-eslint", "^\\."] },
],
},
},
{
name: "tests/all",
files: ["tests/**/*.ts", "vitest.setup.ts"],
rules: {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-empty-object-type": "warn",
},
},
{
name: "generated/all",
files: ["tests/*/quick-start.ts", "example/example.client.ts"],
rules: {
"prettier/prettier": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-empty-object-type": [
"error",
{ allowObjectTypes: "always" },
],
},
},
);