-
Notifications
You must be signed in to change notification settings - Fork 0
/
eslint.config.js
45 lines (43 loc) · 1.05 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
41
42
43
44
45
import eslint from "@eslint/js";
import tseslint from "typescript-eslint";
import pluginVue from "eslint-plugin-vue";
import globals from "globals";
export default [
{
ignores: ["**/coverage/**", "**/விநியோகம்/**"],
},
eslint.configs.recommended,
...tseslint.configs.recommended,
...pluginVue.configs["flat/recommended"],
{
files: ["**/*.js", "**/*.ts", "**/*.vue"],
languageOptions: {
parserOptions: {
ecmaVersion: 12,
sourceType: "module",
parser: "@typescript-eslint/parser",
},
},
rules: {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"vue/multi-word-component-names": "off",
"@typescript-eslint/no-unused-vars": [
"warn",
{
argsIgnorePattern: "^_",
varsIgnorePattern: "^_",
caughtErrorsIgnorePattern: "^_",
},
],
},
},
{
files: ["vitest.config.js"],
languageOptions: {
globals: {
...globals.node
}
}
}
];