-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/password-generator'
- Loading branch information
Showing
68 changed files
with
745 additions
and
2,748 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
!.* | ||
|
||
/build/** | ||
/coverage/** | ||
/dist/** | ||
/test/** | ||
/node_modules/** | ||
!.eslintrc.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# | ||
# Main entry file needs lf only line endings so that bash shell doesn't barf. | ||
# | ||
src/bin/index.js text eol=lf | ||
# | ||
# Avoid crlf translation noise on npm written files | ||
# | ||
package.json text eol=lf | ||
package-lock.json text eol=lf | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 7 additions & 8 deletions
15
.github/ISSUE_TEMPLATE/feature_request.md → .github/ISSUE_TEMPLATE/feature-request.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,19 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
# Feature request | ||
|
||
--- | ||
Suggest an idea for this project | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
A clear and concise description of what the problem is. | ||
|
||
**Describe the solution you'd like** | ||
|
||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
|
||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
|
||
Add any other context or screenshots about the feature request here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"plugins": [ | ||
"remark-preset-lint-recommended", | ||
"remark-preset-lint-markdown-style-guide", | ||
"remark-preset-lint-consistent", | ||
["remark-lint-list-item-spacing", false], | ||
["remark-lint-maximum-heading-length", false], | ||
["remark-lint-list-item-indent", false], | ||
["remark-lint-maximum-line-length", false], | ||
[ | ||
"remark-lint-fenced-code-flag", | ||
{ | ||
"allowEmpty": true | ||
} | ||
], | ||
"validate-links" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
install: install-deps | ||
|
||
run: | ||
npx babel-node 'src/bin/password-generator.js' production | ||
|
||
dev: | ||
npx nodemon --delay 1 --exec babel-node 'src/bin/password-generator.js' developer | ||
|
||
install-deps: | ||
npm ci | ||
|
||
build: | ||
rm -rf dist | ||
npm run build | ||
|
||
test: | ||
npm test | ||
|
||
test-coverage: | ||
nyc npm run test | ||
|
||
lint: | ||
npx eslint . | ||
|
||
package: | ||
npm pack | ||
|
||
publish: | ||
npm publish | ||
|
||
update-deps: | ||
npx npm-check-updates -u |
Oops, something went wrong.