2024-12-13 22:29:34 +01:00
|
|
|
import js from '@eslint/js';
|
2024-10-04 17:43:45 +02:00
|
|
|
import pluginVue from 'eslint-plugin-vue';
|
|
|
|
|
|
|
|
|
|
export default [
|
|
|
|
|
js.configs.recommended,
|
|
|
|
|
...pluginVue.configs['flat/essential'],
|
|
|
|
|
{
|
|
|
|
|
rules: {
|
2024-12-16 16:12:54 +01:00
|
|
|
"semi": "error",
|
2024-12-13 22:29:34 +01:00
|
|
|
"prefer-const": "error",
|
2024-12-16 16:46:26 +01:00
|
|
|
"vue/no-reserved-component-names": "off",
|
|
|
|
|
"vue/multi-word-component-names": "off",
|
2024-10-04 17:43:45 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
];
|