chore(deps): use @nuxt/eslint-config

This commit is contained in:
Benjamin Canac
2023-05-17 12:30:03 +02:00
parent 1bfcf31964
commit ead46f6798
5 changed files with 113 additions and 699 deletions

12
.eslintrc.cjs Normal file
View File

@@ -0,0 +1,12 @@
module.exports = {
root: true,
extends: ['@nuxt/eslint-config'],
rules: {
'vue/multi-word-component-names': 0,
'vue/max-attributes-per-line': ['error', {
singleline: {
max: 5
}
}]
}
}