-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy patheslint.config.mjs
More file actions
54 lines (52 loc) · 1.11 KB
/
eslint.config.mjs
File metadata and controls
54 lines (52 loc) · 1.11 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
import baseConfig from "@heroui/standard/eslint/base.mjs";
import {defineConfig} from "eslint/config";
const config = defineConfig([
{
ignores: [
// Build outputs
"**/.temp",
"**/.next",
"**/.swc",
"**/.turbo",
"**/.cache",
"**/.build",
"**/.vercel",
"**/dist",
"**/build",
"**/storybook-static",
"**/.rollup.cache",
"**/.rollup.cache/**",
// Dependencies
"**/node_modules/",
"**/public/*",
// Generated files
"pnpm-lock.yaml",
"**/.contentlayer/",
"**/.source/**",
// Test coverage
"**/coverage",
"**/__snapshots__",
// OS files
"**/.DS_Store",
// Exceptions - files we want to lint
"!public/manifest.json",
"!.vscode",
"!scripts",
"!.*.js",
"!.*.cjs",
"!.*.mjs",
"!.*.ts",
"!contentlayer.config.ts",
"!next-sitemap.config.ts",
],
},
...baseConfig,
// Allow console usage in skill scripts
{
files: ["skills/**/*.mjs"],
rules: {
"no-console": "off",
},
},
]);
export default config;