Update typescript template to follow some conventions (#42)

* Update default project to follow conventions
This commit is contained in:
Ross Brodbeck
2019-12-06 14:22:35 -05:00
committed by GitHub
parent 752ef589a8
commit 9cdc5b327a
16 changed files with 2823 additions and 1238 deletions

11
.prettierrc.json Normal file
View File

@@ -0,0 +1,11 @@
{
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": false,
"arrowParens": "avoid",
"parser": "typescript"
}