forked from changesets/changesets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheslint.config.js
More file actions
132 lines (125 loc) 路 3.66 KB
/
Copy patheslint.config.js
File metadata and controls
132 lines (125 loc) 路 3.66 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
import e18e from "@e18e/eslint-plugin";
import js from "@eslint/js";
import vitest from "@vitest/eslint-plugin";
import eslintConfigPrettier from "eslint-config-prettier/flat";
import importLite from "eslint-plugin-import-lite";
import node from "eslint-plugin-n";
import { defineConfig } from "eslint/config";
import tseslint from "typescript-eslint";
export default defineConfig(
{
ignores: [
"**/*.{json,md}",
"**/dist/**",
"**/coverage/**",
"**/node_modules/**",
"site/.vitepress",
"packages/cli/bin.js",
"site/.vitepress/cache/**",
"**/*.snap",
],
},
{
plugins: {
e18e,
js,
node,
tseslint,
vitest,
},
extends: [
"e18e/modernization",
"e18e/moduleReplacements",
"e18e/performanceImprovements",
"js/recommended",
"node/flat/recommended",
"tseslint/recommended",
"tseslint/recommendedTypeChecked",
importLite.configs.recommended,
"vitest/recommended",
],
linterOptions: {
reportUnusedDisableDirectives: "error",
reportUnusedInlineConfigs: "error",
},
languageOptions: {
parserOptions: { projectService: true },
},
rules: {
// enforce using `x == null` for nullish checks (no triple equals, no undefined)
eqeqeq: ["error", "always", { null: "never" }],
"no-restricted-syntax": [
"error",
{
selector: "BinaryExpression:has(Identifier[name='undefined'])",
message: "Use `== null` instead of comparing with `undefined`.",
},
],
"e18e/prefer-static-regex": "off",
"@typescript-eslint/consistent-type-exports": [
"error",
{ fixMixedExportsWithInlineTypeSpecifier: true },
],
"@typescript-eslint/consistent-type-imports": [
"error",
{ fixStyle: "inline-type-imports", disallowTypeAnnotations: false },
],
"import-lite/consistent-type-specifier-style": [
"error",
"prefer-top-level",
],
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{ varsIgnorePattern: "^_" },
],
"@typescript-eslint/unbound-method": "off",
// these rules are slow, require extensive config, and/or don't provide much
"n/no-extraneous-import": "off",
"n/no-missing-import": "off",
"n/no-process-exit": "off",
"n/no-unpublished-import": "off",
"n/prefer-node-protocol": "error",
"n/no-unsupported-features/node-builtins": [
"error",
{ allowExperimental: true },
],
"import-lite/no-default-export": "error",
"import-lite/no-mutable-exports": "error",
},
},
{
files: ["site/.vitepress/theme/**"],
rules: {
"n/no-unsupported-features/node-builtins": "off",
},
},
{
files: [
"**/index.ts", // to be removed in next release (v4) when we are dropping default export
"**/*config.*", // config files often return default exports
"site/**/*.data.ts",
"site/**/*.paths.ts",
],
rules: {
"import-lite/no-default-export": "off",
},
},
{
files: ["**/*.{js,mjs}"],
...tseslint.configs.disableTypeChecked,
},
{
files: ["**/*.test.*"],
rules: {
// mock functions often have to be async to match the original fn
"@typescript-eslint/require-await": "off",
},
},
eslintConfigPrettier,
);