Skip to content

Commit

Permalink
- npm: Update devDeps (mocha, typescript, eslint)
Browse files Browse the repository at this point in the history
- Add coverage to ignore and lint all by default (adding to ignore allows discovery by IDEs)
  • Loading branch information
brettz9 committed May 13, 2020
1 parent 8364cea commit f5ce1ec
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/node_modules
!.eslintrc.*
coverage
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,19 @@
"devDependencies": {
"@mysticatea/eslint-plugin": "^13.0.0",
"codecov": "^3.6.5",
"eslint": "~6.6.0",
"mocha": "^7.1.1",
"eslint": "^7.0.0",
"mocha": "^7.1.2",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.1",
"opener": "^1.5.1",
"rimraf": "^3.0.2",
"typescript": "^3.8.3"
"typescript": "^3.9.2"
},
"scripts": {
"clean": "rimraf .nyc_output coverage",
"coverage": "opener coverage/lcov-report/index.html",
"codecov": "codecov --disable=gcov -t $CODECOV_TOKEN",
"lint": "eslint lib scripts tests",
"lint": "eslint .",
"test": "npm run -s lint && nyc mocha \"tests/lib/**/*.js\" --reporter dot",
"update": "node scripts/generate-configs && node scripts/generate-rules",
"preversion": "run-s clean update test",
Expand Down

0 comments on commit f5ce1ec

Please sign in to comment.