You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, the rule doesn't perform a check if the script tag is missing.
It also says:
This rule disallows the use of languages other than those available in the your application for the lang attribute of block elements.
Which could imply that the check shouldn't be performed if the script tag is omitted. However, then the rule is not fulfilling its purpose, which is to force TypeScript (or another language) in all Vue SFCs.
And so I want linting and type checking in all templates. This only happens if I specify <script lang="ts"> in all my .vue files. But my team is able to circumvent this in some components where the <script> tag is not otherwise needed.
Checklist
I have tried restarting my IDE and the issue persists.
The vue/block-lang rule says
However, the rule doesn't perform a check if the
script
tag is missing.It also says:
Which could imply that the check shouldn't be performed if the script tag is omitted. However, then the rule is not fulfilling its purpose, which is to force TypeScript (or another language) in all Vue SFCs.
I am using TypeScript with
tsconfig.json
>vueCompilerOptions.strictTemplates: true
@typescript-eslint
And so I want linting and type checking in all templates. This only happens if I specify
<script lang="ts">
in all my.vue
files. But my team is able to circumvent this in some components where the<script>
tag is not otherwise needed.Checklist
Tell us about your environment
Please show your full configuration:
Simplified version:
What did you do?
What did you expect to happen?
An ESLint error, because I am not using
lang="ts"
What actually happened?
There was no ESLint error
Repository to reproduce this issue
https://github.com/johannes-lindgren/eslint-plugin-vue_issue_block-lang
The text was updated successfully, but these errors were encountered: