Files
toby/.eslintrc.js
Adrian Hopek c962aa2f32 Update .eslintrc.js
Co-authored-by: Ewelina Lasowy <56546832+EwelinaLasowy@users.noreply.github.com>
2022-01-11 13:46:58 +01:00

17 lines
356 B
JavaScript

module.exports = {
env: {
node: true,
},
extends: [
'eslint:recommended',
'plugin:vue/vue3-recommended',
],
rules: {
semi: [2, 'always'],
quotes: ['error', 'single'],
indent: ['error', 4],
'vue/html-indent': ['error', 4],
'vue/multi-word-component-names': 'off',
}
};