Skip to content

Commit

Permalink
Merge pull request #62 from quinnturner/lint/fixes
Browse files Browse the repository at this point in the history
fix(lint): A variety of lint-related fixes
  • Loading branch information
quinnturner authored Mar 6, 2019
2 parents 6aade22 + 9c52888 commit fec9e66
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/bin
/node_modules
node_modules
1 change: 1 addition & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"endOfLine": "lf",
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
Expand Down
34 changes: 17 additions & 17 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"README.md"
],
"scripts": {
"lint": "eslint -c ./.eslintrc.json lib/*",
"lint": "eslint -c ./.eslintrc.json **/*.js",
"test": "mocha --exit --timeout 40000 --recursive --reporter spec test/*.js"
},
"dependencies": {
Expand All @@ -40,9 +40,9 @@
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.14.1",
"eslint": "^5.15.1",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "4.0.0",
"eslint-config-prettier": "4.1.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-prettier": "3.0.1",
"husky": "1.3.1",
Expand Down

0 comments on commit fec9e66

Please sign in to comment.