Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
ryderbrooks committed Apr 11, 2019
1 parent 6bcae7f commit 9b19756
Show file tree
Hide file tree
Showing 8 changed files with 160 additions and 403 deletions.
45 changes: 45 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"root": true,
"env": {
"es6": true,
"node": true,
"mocha": true
},
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json",
"ecmaVersion": 2018,
"sourceType": "module",
"ecmaFeatures": {
"globalReturn": false,
"jsx": false
},
"filePath": "",
"tsconfigRootDir": "",
"extraFileExtensions": [],
"warnOnUnsupportedTypeScriptVersion": true
},
"rules": {
"adjacent-overload-signatures": true,
"camelcase": "warn",
"indent": "warn"
},
"overrides": [
{
"files": [
"**/*.ts"
],
"parser": "@typescript-eslint/parser",
"rules": {
"no-undef": "off"
}
}
]
}
260 changes: 60 additions & 200 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 9b19756

Please sign in to comment.