repod/.eslintrc.cjs
Michel Roux c47111fcce
All checks were successful
repod / xml (push) Successful in 26s
repod / php (push) Successful in 39s
repod / nodejs (push) Successful in 1m6s
repod / release (push) Has been skipped
fix: 🐛 fix all small bugs
2024-09-14 16:04:25 +02:00

16 lines
369 B
JavaScript

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