Skip to content

Commit e372503

Browse files
committed
Merge updates from project template
Fixes: #46 Signed-off-by: Kevin Locke <[email protected]>
2 parents 5ba4df6 + 2d8c140 commit e372503

File tree

4 files changed

+68
-41
lines changed

4 files changed

+68
-41
lines changed

.eslintrc.json

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,17 @@
1212
"test/**"
1313
]
1414
}]
15-
}
15+
},
16+
17+
"overrides": [
18+
{
19+
// Executable scripts should have a shebang
20+
"files": [
21+
"bin/*.js"
22+
],
23+
"rules": {
24+
"node/shebang": "off"
25+
}
26+
}
27+
]
1628
}

README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,13 @@ use this script, or code up something else.
156156

157157
## Contributing
158158

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

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

167172
## License
168173

169-
This package is available under the terms of the
170-
[MIT License](https://opensource.org/licenses/MIT).
174+
This project is available under the terms of the [MIT License](LICENSE.txt).
175+
See the [summary at TLDRLegal](https://tldrlegal.com/license/mit-license).

package-lock.json

Lines changed: 34 additions & 34 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,15 @@
4646
"commander": "^4.0.0"
4747
},
4848
"devDependencies": {
49-
"@kevinoid/eslint-config": "^1.0.0",
49+
"@kevinoid/eslint-config": "^1.0.1",
5050
"codecov": "^3.0.0",
5151
"coveralls": "^3.0.0",
5252
"eslint": "^6.3.0",
5353
"eslint-config-airbnb-base": "^14.0.0",
5454
"eslint-plugin-import": "^2.18.2",
5555
"eslint-plugin-node": "^10.0.0",
5656
"eslint-plugin-promise": "^4.2.1",
57-
"eslint-plugin-unicorn": "^12.0.2",
57+
"eslint-plugin-unicorn": "^13.0.0",
5858
"greenkeeper-lockfile": "^1.15.1",
5959
"jsdoc": "^3.6.0",
6060
"mocha": "^6.0.0",
@@ -66,6 +66,16 @@
6666
"node": ">=8.3",
6767
"npm": ">=1.3.7"
6868
},
69+
"greenkeeper": {
70+
"ignore": [
71+
"eslint",
72+
"eslint-config-airbnb-base",
73+
"eslint-plugin-import",
74+
"eslint-plugin-node",
75+
"eslint-plugin-promise",
76+
"eslint-plugin-unicorn"
77+
]
78+
},
6979
"mocha": {
7080
"checkLeaks": true,
7181
"exit": false

0 commit comments

Comments
 (0)