Skip to content

Commit

Permalink
Merge 9324323 into 38902c3
Browse files Browse the repository at this point in the history
  • Loading branch information
CMunkyDev committed Apr 5, 2019
2 parents 38902c3 + 9324323 commit 6f0f518
Show file tree
Hide file tree
Showing 12 changed files with 2,747 additions and 745 deletions.
7 changes: 6 additions & 1 deletion .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
extends: 'eslint:recommended'
parser: "@typescript-eslint/parser"
extends:
- "plugin:@typescript-eslint/recommended"
- prettier
- "prettier/@typescript-eslint"
env:
es6: true
node: true
parserOptions:
ecmaVersion: 9
plugins:
- "@typescript-eslint"
- prettier
rules:
prettier/prettier: error
Expand Down
5 changes: 2 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,5 @@ typings/
# next.js build output
.next

.vscode

tmp
built
tmp
35 changes: 35 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Mocha All",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"args": [
"-r",
"ts-node/register",
"--timeout",
"999999",
"--colors",
"${workspaceFolder}/modules/**/*-spec.ts",
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"protocol": "inspector"
},
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/index.js",
"args": [
// "check",
"--summary"
]
}
]
}

0 comments on commit 6f0f518

Please sign in to comment.