DocuSphere/web/.eslintrc.js

23 lines
375 B
JavaScript
Raw Permalink Normal View History

2024-09-02 20:50:10 +02:00
/**
* .eslint.js
*
* ESLint configuration file.
*/
module.exports = {
root: true,
env: {
node: true,
},
extends: [
'plugin:vue/vue3-essential',
'plugin:vue/vue3-strongly-recommended',
'plugin:vue/vue3-recommended',
2024-09-02 20:50:10 +02:00
'eslint:recommended',
'@vue/eslint-config-typescript',
],
rules: {
'vue/multi-word-component-names': 'off',
},
}