forked from playfulprogramming/playfulprogramming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslint.config.mjs
89 lines (80 loc) · 1.77 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
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
import eslint from "@eslint/js";
import * as tseslint from "typescript-eslint";
import globals from "globals";
import astroParser from "astro-eslint-parser";
import path from "node:path";
import { fileURLToPath } from "node:url";
import eslintPluginAstro from "eslint-plugin-astro";
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const pfpTypeScriptRules = {
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/no-unused-vars": "off",
};
export default tseslint.config(
// Base ignores
{
ignores: [
"**/node_modules/**",
"**/dist/**",
"**/package-lock.json",
"**/*.md",
"**/*.min.js",
"content/**/*",
"public/content/**/*",
],
},
// Base configs
eslint.configs.recommended,
...tseslint.configs.recommended,
// Astro config
...eslintPluginAstro.configs.recommended,
// Global settings
{
languageOptions: {
globals: {
...globals.node,
...globals.browser,
astroHTML: true,
},
ecmaVersion: "latest",
sourceType: "module",
},
rules: {
"no-unused-vars": "off",
"no-mixed-spaces-and-tabs": "off",
"no-useless-escape": "off",
},
},
// Astro files configuration
{
files: ["**/*.astro"],
languageOptions: {
parser: astroParser,
parserOptions: {
parser: "@typescript-eslint/parser",
extraFileExtensions: [".astro"],
},
},
rules: pfpTypeScriptRules,
},
// TypeScript configuration
{
files: ["**/*.ts", "**/*.tsx"],
languageOptions: {
parserOptions: {
projectService: true,
tsconfigRootDir: __dirname,
},
},
rules: pfpTypeScriptRules,
},
// Astro script configuration
{
files: ["**/*.astro/*.js", "*.astro/*.js"],
languageOptions: {
parser: tseslint.parser,
},
},
);