Skip to content

Commit da02f9b

Browse files
authored
Merge pull request #33 from PathwayCommons/misc-test-settings
Misc ci settings
2 parents 6f0f746 + 334ac72 commit da02f9b

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

.eslintignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules/**/*
2+
src/dashboard/build/*

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
"coverage": "nyc mocha",
2727
"fix": "eslint ./src --fix",
2828
"lint": "eslint ./src",
29-
"clean": "rimraf dist src/dashboard/build"
29+
"clean": "rimraf dist src/dashboard/build",
30+
"ci": "run-s test lint"
3031
},
3132
"author": "Pathway Commons",
3233
"license": "MIT",

src/cli.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ async function getInput (options) {
8686
}
8787
}
8888

89-
async function main () {
89+
async function main () { // eslint-disable-line no-unused-vars
9090
(program
9191
.name('hyper-recent')
9292
.description('A CLI to do hyper-recent feed analysis')
@@ -116,5 +116,3 @@ async function main () {
116116

117117
await program.parseAsync();
118118
}
119-
120-
// main();

0 commit comments

Comments
 (0)