-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
eslint.config.mjs
42 lines (40 loc) · 1.18 KB
/
eslint.config.mjs
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
// @ts-check
import { includeIgnoreFile } from "@eslint/compat";
import eslint from "@eslint/js";
import globals from "globals";
import path from "node:path";
import { fileURLToPath } from "node:url";
import tseslint from "typescript-eslint";
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const gitignorePath = path.resolve(__dirname, ".gitignore");
export default tseslint.config(
{
extends: [
eslint.configs.recommended,
...tseslint.configs.recommended,
includeIgnoreFile(gitignorePath),
],
rules: {
"@typescript-eslint/no-unused-vars": "warn",
"@typescript-eslint/no-unused-expressions": "off",
"@typescript-eslint/no-unsafe-function-type": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/no-empty-object-type": "off",
"@typescript-eslint/ban-types": "off",
},
},
{
files: [
"**/vite.config.{js,ts}",
"**/scripts/**/*.js",
".github/workflows/*.js",
".ncurc.js",
"packages/site/vite/*.{js,ts}",
],
languageOptions: {
globals: globals.node,
},
}
);