repod/.eslintrc.js

10 lines
254 B
JavaScript
Raw Normal View History

2023-06-22 18:10:30 +00:00
module.exports = {
extends: ['@nextcloud', 'plugin:prettier/recommended'],
2023-07-02 16:30:42 +00:00
rules: {
'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
}