We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems that script-indent has much less configuration options than indent? I like the strict indent nature.
It seems you cannot use vue/script-indent just for <script> tags, while keeping indent for all other code?
<script>
The text was updated successfully, but these errors were encountered:
Is this what you are looking for? Turn "indent" off only for .vue files?
module.exports = { rules: { "indent": ["warn", "tab"], }, overrides: [ { files: ["*.vue"], rules: { "indent": "off", "vue/script-indent": ["warn", "tab"], } } ] };
Sorry, something went wrong.
Interesting. I didn't know this. Thanks!
I think this resolved this issue. There will still be an issue that code inside <script> tags will have less strict indent nature. :-(
Cool! If you have proposition regarding what we could add in this rule just post another issue and we can discuss it there @mitar :)
No branches or pull requests
It seems that script-indent has much less configuration options than indent? I like the strict indent nature.
It seems you cannot use vue/script-indent just for
<script>
tags, while keeping indent for all other code?The text was updated successfully, but these errors were encountered: