mirror of
https://github.com/maciejpedzich/racemash.git
synced 2024-11-09 16:43:02 +01:00
18 lines
312 B
JavaScript
18 lines
312 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true
|
|
},
|
|
extends: [
|
|
'plugin:vue/vue3-essential',
|
|
'eslint:recommended',
|
|
'@vue/eslint-config-typescript',
|
|
'prettier'
|
|
],
|
|
plugins: ['prettier'],
|
|
rules: {
|
|
'vue/multi-word-component-names': 'off',
|
|
'prettier/prettier': 'error'
|
|
}
|
|
};
|