|
js formatter on VisualStudio2010 editor makes switch-case indentation like this:
switch (foo) {
case: 0
case: 1
}
but, JSLint and JSHint warn against this indentation. JSLint/JSHint requires:
switch (foo) {
case:0
case:1
}
JSLint/JSHint for VisualStudio2010 should have a option which can be selected those indentation.
|