Skip to content

Commit

Permalink
Merge 89a1f11 into 38902c3
Browse files Browse the repository at this point in the history
  • Loading branch information
CMunkyDev committed Apr 5, 2019
2 parents 38902c3 + 89a1f11 commit f8a1afb
Show file tree
Hide file tree
Showing 13 changed files with 2,846 additions and 834 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
9 changes: 5 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
language: node_js
node_js:
- node
- node
script:
- npm test
- npm run report-coverage
- npm test
- npm run eslint
- npm run report-coverage
deploy:
provider: npm
email: dvilla@collineargroup.com
Expand All @@ -13,4 +14,4 @@ deploy:
tags: true
repo: CollinearGroup/license-validator
notifications:
webhooks: https://outlook.office.com/webhook/1dc2fc03-4a73-44e5-b48a-65be355505f3@48b2d8b4-e0d1-42c7-9e65-8752de35e36e/TravisCI/6937f297211645ce8bda9f2b9b609f0f/d021736f-cd02-443a-89af-e14772cbcd07
webhooks: https://outlook.office.com/webhook/1dc2fc03-4a73-44e5-b48a-65be355505f3@48b2d8b4-e0d1-42c7-9e65-8752de35e36e/TravisCI/6937f297211645ce8bda9f2b9b609f0f/d021736f-cd02-443a-89af-e14772cbcd07
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 f8a1afb

Please sign in to comment.