-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslintrc.cjs
111 lines (108 loc) · 3.34 KB
/
eslintrc.cjs
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
// eslint-disable-next-line @typescript-eslint/no-var-requires
const { builtinModules } = require("module");
/** @type {import("@types/eslint").Linter.Config} */
module.exports = {
extends: [
"plugin:@typescript-eslint/recommended-type-checked",
"plugin:@typescript-eslint/stylistic-type-checked",
"prettier",
],
parser: "@typescript-eslint/parser",
parserOptions: {
project: ["./packages/*/tsconfig.json", "./tsconfig.eslint.json"],
tsconfigRootDir: __dirname,
},
plugins: ["@typescript-eslint", "prettier", "no-only-tests"],
rules: {
// These off/configured-differently-by-default rules fit well for us
"@typescript-eslint/array-type": ["error", { default: "array-simple" }],
"@typescript-eslint/no-unused-vars": [
"warn",
{
argsIgnorePattern: "^_",
varsIgnorePattern: "^_",
caughtErrorsIgnorePattern: "^_",
ignoreRestSiblings: true,
},
],
"no-only-tests/no-only-tests": "error",
"@typescript-eslint/no-shadow": ["error"],
"no-console": "warn",
// Todo: do we want these?
"@typescript-eslint/array-type": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/class-literal-property-style": "off",
"@typescript-eslint/consistent-indexed-object-style": "off",
"@typescript-eslint/consistent-type-definitions": "off",
"@typescript-eslint/dot-notation": "off",
"@typescript-eslint/no-base-to-string": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-floating-promises": "off",
"@typescript-eslint/no-misused-promises": "off",
"@typescript-eslint/no-redundant-type-constituents": "off",
"@typescript-eslint/no-this-alias": "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/prefer-nullish-coalescing": "off",
"@typescript-eslint/prefer-optional-chain": "off",
"@typescript-eslint/prefer-string-starts-ends-with": "off",
"@typescript-eslint/require-await": "off",
"@typescript-eslint/restrict-plus-operands": "off",
"@typescript-eslint/restrict-template-expressions": "off",
"@typescript-eslint/sort-type-constituents": "off",
"@typescript-eslint/unbound-method": "off",
"@typescript-eslint/no-explicit-any": "off",
// These rules enabled by the preset configs don't work well for us
"@typescript-eslint/await-thenable": "off",
"prefer-const": "off",
},
overrides: [
{
// Ensure Node builtins aren't included in Astro's server runtime
files: ["packages/astro/src/runtime/**/*.ts"],
rules: {
"no-restricted-imports": [
"error",
{
paths: [...builtinModules],
patterns: ["node:*"],
},
],
},
},
{
files: ["packages/astro/src/runtime/client/**/*.ts"],
env: {
browser: true,
},
},
{
files: ["packages/**/test/*.js", "packages/**/*.js"],
env: {
mocha: true,
},
globals: {
globalThis: false, // false means read-only
},
rules: {
"no-console": "off",
},
},
{
files: ["packages/integrations/**/*.ts"],
rules: {
"no-console": ["error", { allow: ["warn", "error", "info", "debug"] }],
},
},
{
files: ["benchmark/**/*.js"],
rules: {
"@typescript-eslint/no-unused-vars": "off",
"no-console": "off",
},
},
],
};