sorry, my English is not good, but I need to know how to fix it.
I try to use every indent rules, it doesn't work...
I wish everything is well when I use Vetur formatter.
please tell me how to fix it, thanks
sorry, my English is not good, but I need to know how to fix it.
I try to use every indent rules, it doesn't work...
I wish everything is well when I use Vetur formatter.
please tell me how to fix it, thanks
Try adding offsetTernaryExpressions to your ESLint indent rule config.
.eslintrc
rules: {
'indent': [2, 2, {
'SwitchCase': 1,
'offsetTernaryExpressions': true
}]
}