RePod-Nextcloud-App/.eslintrc.js

12 lines
230 B
JavaScript
Raw Permalink Normal View History

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