mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender.git
synced 2025-07-16 01:28:48 +02:00
11 lines
312 B
JavaScript
11 lines
312 B
JavaScript
import pluginVue from "eslint-plugin-vue";
|
|
import vueTsEslintConfig from "@vue/eslint-config-typescript";
|
|
|
|
export default [
|
|
...pluginVue.configs["flat/essential"],
|
|
...vueTsEslintConfig(),
|
|
{
|
|
files: ["**/*.ts", "**/*.tsx", "**/*.vue", "**/*.js"],
|
|
rules: { 'vue/multi-word-component-names': 0 },
|
|
}
|
|
] |