mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2025-12-06 08:32:51 +08:00
25 lines
548 B
JavaScript
25 lines
548 B
JavaScript
import { jsonEslintConfig } from "./eslint/jsonEslint.js";
|
|
import { vueEslintConfig } from "./eslint/vueEslint.js";
|
|
import ymlEslintConfig from "./eslint/ymlEslint.js";
|
|
|
|
export default [
|
|
...jsonEslintConfig,
|
|
ymlEslintConfig,
|
|
...vueEslintConfig,
|
|
{
|
|
ignores: [
|
|
"dist",
|
|
"src-tauri/target",
|
|
"pnpm-lock.yaml",
|
|
"src/data/**/*.json",
|
|
"src-tauri/tauri.conf.json",
|
|
"src-tauri/gen/*.json",
|
|
"qodana.yaml",
|
|
".github",
|
|
".vscode",
|
|
".prettierrc.yml",
|
|
".stylelintrc.yml",
|
|
],
|
|
},
|
|
];
|