Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
igorshubovych committed Mar 5, 2016
1 parent 4eff9be commit 0bb2c57
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"no-new-wrappers": 2,
"no-new": 2,
"no-octal-escape": 2,
"no-process-env": 2,
"no-process-env": 0,
"no-proto": 2,
"no-redeclare": 2,
"no-return-assign": 2,
Expand All @@ -71,7 +71,7 @@
"no-useless-call": 2,
"no-useless-concat": 2,
"no-void": 2,
"no-warning-comments": 2,
"no-warning-comments": 1,
"no-with": 2,
"radix": 2,
"wrap-iife": 2,
Expand Down
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@
"postinstall": "node ./bin/tldr --update",
"start": "node ./bin/tldr",
"example": "node ./bin/tldr tar",
"test": "mocha test",
"test:quiet": "mocha test --reporter=dot",
"test": "mocha test --require=env-test",
"test:quiet": "npm test --reporter=dot",
"lint": "eslint lib test bin/tldr",
"watch": "mocha test --reporter=min --watch --growl",
"watch": "mocha test --require=env-test --reporter=min --watch --growl",
"test:functional": "bash test/functional-test.sh",
"test:all": "npm run lint && npm test && npm run test:functional"
},
"dependencies": {
"colors": "~1.1.2",
"chalk": "~1.1.1",
"commander": "~2.9.0",
"lodash.compact": "~3.0.0",
"lodash.defaults": "~4.0.1",
Expand All @@ -65,6 +65,7 @@
"wrench": "~1.5.8"
},
"devDependencies": {
"env-test": "*",
"eslint": "*",
"husky": "*",
"mocha": "*",
Expand Down

0 comments on commit 0bb2c57

Please sign in to comment.