Files
evilspins/eslint.config.mjs
valere 0c1cf30996
All checks were successful
Deploy App / deploy (push) Successful in 1m18s
first 3D model
2025-09-17 23:39:43 +02:00

22 lines
521 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// @ts-check
import withNuxt from "./.nuxt/eslint.config.mjs";
export default withNuxt({
rules: {
// Garde l'ordre correct : class avant @click
"vue/attributes-order": "error",
// Contrôle du nombre d'attributs par ligne
"vue/max-attributes-per-line": [
"error",
{
singleline: 3, // autorise jusquà 3 attributs sur une ligne
multiline: {
max: 1, // si retour à la ligne, 1 attr par ligne
allowFirstLine: false,
},
},
],
},
});