Enforce ts tab indents for accessibility

This commit is contained in:
Eric 2020-06-26 19:35:09 -05:00 committed by Eric Schultz
parent e6dda7b88b
commit 48f2303216
3 changed files with 231 additions and 230 deletions

View file

@ -43,6 +43,7 @@ module.exports = {
"error",
"always"
],
"no-trailing-spaces": ["error"]
"no-trailing-spaces": ["error"],
"indent": ["error", "tab"], // we use tabs for accessibility
}
};