-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy patheslint.config.mjs
More file actions
86 lines (83 loc) · 2.3 KB
/
Copy patheslint.config.mjs
File metadata and controls
86 lines (83 loc) · 2.3 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
import globals from "globals";
import pluginJs from "@eslint/js";
import tseslint from "typescript-eslint";
import reactPlugin from "eslint-plugin-react";
import reactHooks from "eslint-plugin-react-hooks";
import convexPlugin from "@convex-dev/eslint-plugin";
export default [
{ files: ["src/**/*.{js,mjs,cjs,ts,tsx}", "convex/**/*.{ts,tsx}"] },
{
ignores: [
"dist/**",
"packages/convex-helpers/dist/**",
"packages/convex-helpers/generate-exports.mjs",
"src/fakeConvexClient/fakeConvexClient.js",
"backendHarness.js",
"test-http-routes.mjs",
"eslint.config.mjs",
"convex/vitest.config.mts",
"setup.cjs",
"**/_generated/",
"vite.config.mts",
"vitest.workspace.ts",
],
},
{
files: ["convex/**/*.ts", "packages/convex-helpers/server/**/*.ts"],
ignores: ["packages/convex-helpers/server/_generated/**/*"],
plugins: {
"@convex-dev": convexPlugin,
},
rules: convexPlugin.configs.recommended[0].rules,
},
{
languageOptions: {
globals: globals.worker,
parser: tseslint.parser,
parserOptions: {
project: ["./tsconfig.json", "./packages/convex-helpers/tsconfig.json"],
tsconfigRootDir: import.meta.dirname,
},
},
},
pluginJs.configs.recommended,
...tseslint.configs.recommended,
{
files: [
"src/react/**/*.{jsx,tsx}",
"src/react/**/*.js",
"src/react/**/*.ts",
],
plugins: { react: reactPlugin, "react-hooks": reactHooks },
settings: {
react: {
version: "detect",
},
},
rules: {
...reactPlugin.configs["recommended"].rules,
"react/jsx-uses-react": "off",
"react/react-in-jsx-scope": "off",
"react/prop-types": "off",
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
},
},
{
rules: {
"@typescript-eslint/no-floating-promises": "error",
"eslint-comments/no-unused-disable": "off",
"@typescript-eslint/no-explicit-any": "off",
// allow (_arg: number) => {} and const _foo = 1;
"no-unused-vars": "off",
"no-unused-private-class-members": "warn",
"@typescript-eslint/no-unused-vars": [
"warn",
{
argsIgnorePattern: "^_",
varsIgnorePattern: "^_",
},
],
},
},
];