We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b084833 commit 533c43fCopy full SHA for 533c43f
1 file changed
eslint.config.mjs
@@ -2,15 +2,6 @@ import unicorn from "eslint-plugin-unicorn"
2
import withNuxt from "./.nuxt/eslint.config.mjs"
3
4
export default withNuxt([
5
- {
6
- files: ["**/*.html", "**/*.vue"],
7
- rules: {
8
- // this is stupid.
9
- // https://github.com/prettier/prettier/issues/15336
10
- "vue/html-self-closing": "off",
11
- },
12
13
-]).prepend([
14
unicorn.configs["flat/recommended"],
15
{
16
files: ["utils/*.ts", "functions/*.mts"],
@@ -31,4 +22,17 @@ export default withNuxt([
31
22
],
32
23
},
33
24
25
+ {
26
+ files: ["**/*.html", "**/*.vue"],
27
+ rules: {
28
+ // this is stupid.
29
+ // https://github.com/prettier/prettier/issues/15336
30
+ "vue/html-self-closing": "off",
+ },
34
35
+ "unicorn/prefer-global-this": "off",
36
37
38
])
0 commit comments