Add ESLint and Prettier tooling

This commit is contained in:
Jonathan Clem
2019-04-19 15:35:44 -04:00
parent 37e19115be
commit 3e32975625
6 changed files with 969 additions and 38 deletions

10
.eslintrc.json Normal file
View File

@@ -0,0 +1,10 @@
{
"extends": ["plugin:github/es6"],
"parser": "@typescript-eslint/parser",
"plugins": ["jest"],
"env": {
"node": true,
"es6": true,
"jest/globals": true
}
}