-
Notifications
You must be signed in to change notification settings - Fork 361
/
eslint.config.mjs
62 lines (60 loc) · 1.34 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// @ts-check
import eslint from "@eslint/js";
import eslintConfigPrettier from "eslint-config-prettier";
import turboPlugin from "eslint-plugin-turbo";
import globals from "globals";
import tseslint from "typescript-eslint";
export default tseslint.config(
eslint.configs.recommended,
...tseslint.configs.recommended,
eslintConfigPrettier,
{
languageOptions: {
ecmaVersion: 2022,
sourceType: "module",
globals: {
...globals.browser,
...globals.node,
},
},
},
{
name: "eslint-config-turbo (recreated flat)",
plugins: {
turbo: { rules: turboPlugin.rules },
},
},
{
rules: {
"no-irregular-whitespace": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-explicit-any": [
"error",
{
ignoreRestArgs: true,
},
],
},
},
{
files: ["packages/wasm-tools/**"],
rules: {
"@typescript-eslint/no-explicit-any": "off",
},
},
{
ignores: [
"**/dist/**",
"**/lib/*",
"**/deps/**",
"**/.next/**",
"**/node_modules/**",
"**/build/**",
"**/.docusaurus/**",
// third party deps
"packages/env/src/fs/memfs/index.js",
"packages/core/src/prompts/format.ts",
"packages/core/src/node-parser/sentence_tokenizer.js",
],
},
);