Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Swapped jshint for eslint with eslint-config-mourner
  • Loading branch information
SKalt committed Jul 21, 2019
commit f0c32740d8e3687344e10dd9bfa3afa347e5ceba
11 changes: 5 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,15 @@
"types": "index.d.ts",
"devDependencies": {
"benchmark": "^2.1.4",
"eslint": "^6.0.1",
"eslint-config-mourner": "^3.0.0",
"faucet": "0.0.1",
"jshint": "^2.9.5",
"tape": "^4.8.0"
},
"scripts": {
"test": "jshint simplify.js test/test.js && node test/test.js | faucet"
"test": "eslint simplify.js test/test.js && node test/test.js | faucet"
},
"jshintConfig": {
"quotmark": "single",
"trailing": true,
"unused": true
"eslintConfig": {
"extends": "mourner"
}
}