-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslint.config.js
40 lines (39 loc) · 2.16 KB
/
eslint.config.js
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
import { ESLINT_TYPESCRIPT_CONFIG } from "./config/eslint/flat-configs/eslint.typescript-config.mjs";
import { ESLINT_STYLISTIC_CONFIG } from "./config/eslint/flat-configs/eslint.stylistic-config.mjs";
import { ESLINT_CONFIG_FILES_CONFIG } from "./config/eslint/flat-configs/eslint.config-files-config.mjs";
import { ESLINT_VUE_CONFIG } from "./config/eslint/flat-configs/eslint.vue-config.mjs";
import { ESLINT_PAGES_CONFIG } from "./config/eslint/flat-configs/eslint.pages-config.mjs";
import { ESLINT_CLASSES_CONFIG } from "./config/eslint/flat-configs/eslint.classes-config.mjs";
import { ESLINT_COMPOSABLES_CONFIG } from "./config/eslint/flat-configs/eslint.composables-config.mjs";
import { ESLINT_MODULES_CONFIG } from "./config/eslint/flat-configs/eslint.modules-config.mjs";
import { ESLINT_GLOBAL_CONFIG } from "./config/eslint/flat-configs/eslint.global-config.mjs";
import { ESLINT_IGNORES } from "./config/eslint/eslint.constants.mjs";
import { ESLINT_TYPESCRIPT_DECLARATION_CONFIG } from "./config/eslint/flat-configs/eslint.typescript-declaration-config.mjs";
import { ESLINT_NUXT_CONFIG_FILE_CONFIG } from "./config/eslint/flat-configs/eslint.nuxt-config-file-config.mjs";
import { ESLINT_IMPORT_CONFIG } from "./config/eslint/flat-configs/eslint.import-config.mjs";
import { ESLINT_PLUGINS_CONFIG } from "./config/eslint/flat-configs/eslint.plugins-config.mjs";
import { ESLINT_DECLARATIONS_CONFIG } from "./config/eslint/flat-configs/eslint.declarations-config.mjs";
import { ESLINT_SERVER_FILES_CONFIG } from "./config/eslint/flat-configs/eslint.server-files.config.mjs";
import { ESLINT_TESTS_CONFIG } from "./config/eslint/flat-configs/eslint.tests-config.mjs";
export default [
{
name: "global-ignores",
ignores: ESLINT_IGNORES,
},
ESLINT_GLOBAL_CONFIG,
ESLINT_IMPORT_CONFIG,
ESLINT_TYPESCRIPT_CONFIG,
ESLINT_DECLARATIONS_CONFIG,
ESLINT_TYPESCRIPT_DECLARATION_CONFIG,
ESLINT_VUE_CONFIG,
ESLINT_COMPOSABLES_CONFIG,
ESLINT_PAGES_CONFIG,
ESLINT_STYLISTIC_CONFIG,
ESLINT_CONFIG_FILES_CONFIG,
ESLINT_CLASSES_CONFIG,
ESLINT_MODULES_CONFIG,
ESLINT_PLUGINS_CONFIG,
ESLINT_NUXT_CONFIG_FILE_CONFIG,
ESLINT_SERVER_FILES_CONFIG,
ESLINT_TESTS_CONFIG,
];