Skip to content

Commit

Permalink
disable eslint vue/multi-word-component-names rule
Browse files Browse the repository at this point in the history
  • Loading branch information
noisy committed Mar 31, 2022
1 parent 72c3957 commit cdc50c6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,11 @@ module.exports = {
files: ["cypress/integration/**.spec.{js,ts,jsx,tsx}"],
extends: ["plugin:cypress/recommended"],
},
{
files: ["src/**/*.vue"],
rules: {
"vue/multi-word-component-names": 0,
},
},
],
};
3 changes: 2 additions & 1 deletion src/components/Filters.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
</template>

<script lang="ts">
import { allFilterTag, IFilter } from "@/types";
import type { IFilter } from "@/types";
import { allFilterTag } from "@/types";
import type { PropType } from "vue";
import { defineComponent } from "vue";
Expand Down

0 comments on commit cdc50c6

Please sign in to comment.