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