Indent switch case

This commit is contained in:
Ajay Ramachandran
2021-08-02 16:25:04 -04:00
parent 3368615a77
commit 3a8076fc3c
5 changed files with 31 additions and 30 deletions

View File

@@ -24,6 +24,6 @@ module.exports = {
"prefer-template": "warn",
"quotes": ["warn", "double", { "avoidEscape": true, "allowTemplateLiterals": true }],
"no-multiple-empty-lines": ["error", { max: 2, maxEOF: 0 }],
"indent": ["warn", 4],
"indent": ["warn", 4, { "SwitchCase": 1 }],
},
};