Skip to content

Commit

Permalink
chore: update ESLint config
Browse files Browse the repository at this point in the history
  • Loading branch information
johannschopplich committed Oct 19, 2024
1 parent b8316e0 commit 8eaf67b
Showing 1 changed file with 11 additions and 14 deletions.
25 changes: 11 additions & 14 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
// @ts-check
import antfu from "@antfu/eslint-config";

export default antfu(
{
stylistic: false,
export default antfu({
stylistic: false,
}).append({
rules: {
// Ignore rules clashing with Prettier
"vue/html-closing-bracket-newline": "off",
"vue/html-indent": "off",
"vue/html-self-closing": "off",
"vue/singleline-html-element-content-newline": "off",
"vue/multiline-html-element-content-newline": "off",
},
{
rules: {
// Ignore rules clashing with Prettier
"vue/html-closing-bracket-newline": "off",
"vue/html-indent": "off",
"vue/html-self-closing": "off",
"vue/singleline-html-element-content-newline": "off",
"vue/multiline-html-element-content-newline": "off",
},
},
);
});

0 comments on commit 8eaf67b

Please sign in to comment.