2024-04-25 08:03:54 +00:00
|
|
|
module.exports = {
|
|
|
|
extends: [
|
|
|
|
'@nextcloud',
|
2024-11-19 20:04:43 +00:00
|
|
|
'@vue/eslint-config-typescript/recommended',
|
|
|
|
'plugin:prettier/recommended',
|
2024-04-25 08:03:54 +00:00
|
|
|
],
|
2024-11-19 20:04:43 +00:00
|
|
|
parser: 'vue-eslint-parser',
|
2024-04-25 08:03:54 +00:00
|
|
|
rules: {
|
|
|
|
'jsdoc/require-jsdoc': 'off',
|
|
|
|
'vue/first-attribute-linebreak': 'off',
|
2024-11-19 20:04:43 +00:00
|
|
|
'sort-imports': 'error',
|
|
|
|
'vue/attributes-order': ['error', { alphabetical: true }],
|
2024-04-25 08:03:54 +00:00
|
|
|
},
|
|
|
|
}
|