2023-06-22 20:10:30 +02:00
|
|
|
module.exports = {
|
2024-05-29 17:11:53 +02:00
|
|
|
extends: ['@nextcloud', 'plugin:prettier/recommended'],
|
2023-07-02 18:30:42 +02:00
|
|
|
rules: {
|
2024-05-29 17:11:53 +02:00
|
|
|
'jsdoc/require-jsdoc': 'off',
|
|
|
|
'vue/first-attribute-linebreak': 'off',
|
2023-07-02 18:30:42 +02:00
|
|
|
'sort-imports': 'error',
|
2023-07-29 17:53:51 +02:00
|
|
|
'vue/attributes-order': ['error', { alphabetical: true }],
|
2023-07-02 18:30:42 +02:00
|
|
|
},
|
2023-06-22 20:10:30 +02:00
|
|
|
}
|