newsnow/eslint.config.mjs

10 lines
248 B
JavaScript
Raw Normal View History

import { ourongxing, react } from "@ourongxing/eslint-config"
2024-09-26 11:30:21 +08:00
export default ourongxing({
type: "app",
2024-10-31 01:12:44 +08:00
// 貌似不能 ./ 开头,
2024-11-24 23:37:23 +08:00
ignores: ["src/routeTree.gen.ts", "imports.app.d.ts", "public/"],
}).append(react({
files: ["src/**"],
}))