Files
fst-frontend/.eslintrc.cjs
2022-12-30 00:45:54 +01:00

21 lines
501 B
JavaScript

/* eslint-env node */
require('@rushstack/eslint-patch/modern-module-resolution')
module.exports = {
root: true,
'extends': [
'plugin:vue/vue3-recommended',
'@vue/eslint-config-prettier'
],
'rules': {
'vue/max-attributes-per-line': 'off',
'vue/html-closing-bracket-newline': 'off',
'vue/multi-word-component-names': 'off',
'vue/html-self-closing': 'off',
'vue/singleline-html-element-content-newline': 'off'
},
parserOptions: {
ecmaVersion: 'latest'
}
}