repod/.eslintrc.cjs
Michel Roux 4a93cb9964
Some checks failed
repod / nodejs (push) Waiting to run
repod / release (push) Waiting to run
repod / xml (push) Successful in 14s
repod / php (push) Has been cancelled
chore: ⬆️ update vite-config
2025-01-10 23:54:58 +01:00

14 lines
311 B
JavaScript

module.exports = {
extends: [
'@nextcloud/eslint-config/vue3',
'plugin:pinia/recommended',
'plugin:prettier/recommended',
],
rules: {
'jsdoc/require-jsdoc': 'off',
'vue/first-attribute-linebreak': 'off',
'sort-imports': 'error',
'vue/attributes-order': ['error', { alphabetical: true }],
},
}