-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheslint.config.js
More file actions
49 lines (46 loc) · 935 Bytes
/
eslint.config.js
File metadata and controls
49 lines (46 loc) · 935 Bytes
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
import { typescriptWithBiome } from "@mkobayashime/shared-config/eslint";
import userscriptsPlugin from "eslint-plugin-userscripts";
/** @type {import('eslint').Linter.Config[]} */
const config = [
{
ignores: [".dev"],
},
...typescriptWithBiome.map((c) => ({
...c,
files: ["src/**/*.ts"],
})),
{
languageOptions: {
parserOptions: {
project: "./tsconfig.json",
},
},
},
/**
* userscripts
*/
{
files: ["**/*.user.ts", "**/*.user.js"],
plugins: {
userscripts: {
rules: userscriptsPlugin.rules,
},
},
rules: {
...userscriptsPlugin.configs.recommended.rules,
},
settings: {
userscriptVersions: {
violentmonkey: "*",
},
},
},
{
files: ["**/*.user.ts"],
rules: {
"userscripts/no-invalid-metadata": "off",
"userscripts/filename-user": "off",
},
},
];
export default config;