10 lines
254 B
JavaScript
10 lines
254 B
JavaScript
module.exports = {
|
|
extends: ['@nextcloud', 'plugin:prettier/recommended'],
|
|
rules: {
|
|
'jsdoc/require-jsdoc': 'off',
|
|
'vue/first-attribute-linebreak': 'off',
|
|
'sort-imports': 'error',
|
|
'vue/attributes-order': ['error', { alphabetical: true }],
|
|
},
|
|
}
|