18 lines
533 B
JavaScript
18 lines
533 B
JavaScript
// @ts-check
|
|
import withNuxt from "./.nuxt/eslint.config.mjs";
|
|
import { baseRules, } from "@workspace/tooling/eslint/base";
|
|
|
|
export default withNuxt({
|
|
rules: {
|
|
...baseRules,
|
|
"@stylistic/member-delimiter-style": "off",
|
|
"@stylistic/arrow-parens": "off",
|
|
"vue/max-attributes-per-line": "off",
|
|
"vue/singleline-html-element-content-newline": "off",
|
|
"vue/html-closing-bracket-newline": "off",
|
|
"vue/no-multiple-template-root": "off",
|
|
"max-lines-per-function": "off",
|
|
"max-statements": "off",
|
|
},
|
|
},);
|