Skip to content

Commit

Permalink
Merge updates from project template
Browse files Browse the repository at this point in the history
Fixes: #46

Signed-off-by: Kevin Locke <kevin@kevinlocke.name>
  • Loading branch information
kevinoid committed Nov 17, 2019
2 parents 5ba4df6 + 2d8c140 commit e372503
Show file tree
Hide file tree
Showing 4 changed files with 68 additions and 41 deletions.
14 changes: 13 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,17 @@
"test/**"
]
}]
}
},

"overrides": [
{
// Executable scripts should have a shebang
"files": [
"bin/*.js"
],
"rules": {
"node/shebang": "off"
}
}
]
}
13 changes: 9 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,13 @@ use this script, or code up something else.

## Contributing

Contributions are welcome and very much appreciated! Please add tests to
cover any changes and ensure `npm test` passes.
Contributions are appreciated. Contributors agree to abide by the [Contributor
Covenant Code of
Conduct](https://www.contributor-covenant.org/version/1/4/code-of-conduct.html).
If this is your first time contributing to a Free and Open Source Software
project, consider reading [How to Contribute to Open
Source](https://opensource.guide/how-to-contribute/)
in the Open Source Guides.

If the desired change is large, complex, backwards-incompatible, can have
significantly differing implementations, or may not be in scope for this
Expand All @@ -166,5 +171,5 @@ save a lot of time and effort.

## License

This package is available under the terms of the
[MIT License](https://opensource.org/licenses/MIT).
This project is available under the terms of the [MIT License](LICENSE.txt).
See the [summary at TLDRLegal](https://tldrlegal.com/license/mit-license).
68 changes: 34 additions & 34 deletions package-lock.json

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

14 changes: 12 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@
"commander": "^4.0.0"
},
"devDependencies": {
"@kevinoid/eslint-config": "^1.0.0",
"@kevinoid/eslint-config": "^1.0.1",
"codecov": "^3.0.0",
"coveralls": "^3.0.0",
"eslint": "^6.3.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-unicorn": "^12.0.2",
"eslint-plugin-unicorn": "^13.0.0",
"greenkeeper-lockfile": "^1.15.1",
"jsdoc": "^3.6.0",
"mocha": "^6.0.0",
Expand All @@ -66,6 +66,16 @@
"node": ">=8.3",
"npm": ">=1.3.7"
},
"greenkeeper": {
"ignore": [
"eslint",
"eslint-config-airbnb-base",
"eslint-plugin-import",
"eslint-plugin-node",
"eslint-plugin-promise",
"eslint-plugin-unicorn"
]
},
"mocha": {
"checkLeaks": true,
"exit": false
Expand Down

0 comments on commit e372503

Please sign in to comment.