Files
leim-tools/eslint.config.mjs
Alexis 7fdab8601f Migration to nuxt 4
Used codemods CLI and reworked most alias'd path that stopped working
2025-07-27 14:30:30 +02:00

17 lines
439 B
JavaScript

import withNuxt from ".nuxt/eslint.config.mjs"
import stylisticJs from "@stylistic/eslint-plugin-js"
export default withNuxt({
plugins: {
"@stylistic/js": stylisticJs
},
rules: {
"vue/multi-word-component-names": "off",
"no-unused-vars": "warn",
"space-in-parens": "off",
"computed-property-spacing": "off",
"quotes": ["error", "double"],
"@stylistic/js/indent": [ "warn", 2, { SwitchCase: 1 } ],
}
})