Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
抱歉,我的英语不好,但我需要知道如何解决它。
我尝试使用每个缩进规则,它不起作用......
当我使用 Vetur 格式化程序时,我希望一切顺利。
请告诉我如何解决它,谢谢
https://eslint.org/docs/rules/no-mixed-spaces-and-tabs#disallow-mixed-spaces-and-tabs-for-indentation-no-mixed-spaces-and-tabs
我的问题片段
问题描述
我的 vscode setting.json
我的 eslint 规则设置
尝试添加offsetTernaryExpressions到您的 ESLintindent规则配置中。
offsetTernaryExpressions
indent
.eslintrc
rules: { 'indent': [2, 2, { 'SwitchCase': 1, 'offsetTernaryExpressions': true }] }
有关此配置选项的更多信息