-
-
Notifications
You must be signed in to change notification settings - Fork 681
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: format & tweaks, better ignores
Signed-off-by: Charlike Mike Reagent <[email protected]>
- Loading branch information
1 parent
a38e768
commit 0ca40b3
Showing
22 changed files
with
1,597 additions
and
457 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 |
---|---|---|
@@ -1,81 +1,25 @@ | ||
CHANGELOG.md | ||
README.md | ||
*.d.ts | ||
recipes | ||
patches | ||
# Ignore everything! | ||
* | ||
|
||
test-legacy | ||
*.js.snap | ||
*.tsbuildinfo | ||
.cache | ||
.*cache | ||
*.cache | ||
# de-ignores: add here what you want to be committed | ||
!*.*js* | ||
!*.ts* | ||
!*.md* | ||
|
||
.all-contrib*rc | ||
# Build environment | ||
dist | ||
!**/src | ||
!**/src/** | ||
|
||
# Package managers lockfiles | ||
package-lock.json | ||
shrinkwrap.json | ||
pnpm-lock.json | ||
!**/test | ||
!**/test/** | ||
|
||
# Logs | ||
logs | ||
*.log | ||
*~ | ||
!**/*tests* | ||
!**/*tests*/** | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
*.pid.lock | ||
!**/benchmark* | ||
!**/benchmark*/** | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
!**/example* | ||
!**/example*/** | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
|
||
# nyc test coverage | ||
.nyc_output | ||
|
||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
|
||
# Bower dependency directory (https://bower.io/) | ||
bower_components | ||
|
||
# node-waf configuration | ||
.lock-wscript | ||
|
||
# Compiled binary addons (https://nodejs.org/api/addons.html) | ||
build/Release | ||
|
||
# Dependency directories | ||
node_modules/ | ||
jspm_packages/ | ||
|
||
# TypeScript v1 declaration files | ||
typings/ | ||
|
||
# Optional npm cache directory | ||
.npm | ||
|
||
# Optional eslint cache | ||
.eslintcache | ||
|
||
# Optional REPL history | ||
.node_repl_history | ||
|
||
# Output of 'npm pack' | ||
*.tgz | ||
|
||
# Yarn Integrity file | ||
.yarn-integrity | ||
|
||
# dotenv environment variables file | ||
.env | ||
|
||
# next.js build output | ||
.next | ||
# re-ignores: add here what you want to be ignored again | ||
test/tmp |
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 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,76 +1,126 @@ | ||
*.tsbuildinfo | ||
.cache | ||
.*cache | ||
*.cache | ||
# Ignore everything! | ||
* | ||
*~* | ||
|
||
# de-ignores: add here what you want to be committed | ||
!logo.png | ||
!logo.jpg | ||
!test-legacy | ||
!tool | ||
|
||
!*.*js* | ||
!*.ts* | ||
!*.md* | ||
!.*rc | ||
!.*ignore | ||
!LICENSE | ||
|
||
!package.json | ||
!yarn.lock | ||
|
||
!**/src | ||
!**/src/** | ||
|
||
!**/test | ||
!**/test/** | ||
|
||
!**/*tests* | ||
!**/*tests*/** | ||
|
||
!**/.github | ||
!**/.github/** | ||
|
||
!**/example* | ||
!**/example*/** | ||
|
||
!**/benchmark* | ||
!**/benchmark*/** | ||
|
||
# re-ignores: add here what you want to be ignored again | ||
test/tmp | ||
*.upload | ||
*.un~ | ||
|
||
# Build environment | ||
dist | ||
# !src/*.js | ||
# !src/*.ts | ||
# !test | ||
# !test/*.js | ||
# !test/*.ts | ||
# !test/**/*.js | ||
# !test/**/*.ts | ||
# !*/__tests__ | ||
|
||
|
||
# *.tsbuildinfo | ||
# .*cache | ||
# *.cache | ||
|
||
# test/tmp | ||
# *.upload | ||
# *.un~ | ||
|
||
# # Build environment | ||
# dist | ||
|
||
# Package managers lockfiles | ||
package-lock.json | ||
shrinkwrap.json | ||
pnpm-lock.json | ||
# # Package managers lockfiles | ||
# package-lock.json | ||
# shrinkwrap.json | ||
# pnpm-lock.json | ||
|
||
# Logs | ||
logs | ||
*.log | ||
*~ | ||
# # Logs | ||
# logs | ||
# *.log | ||
# *~ | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
*.pid.lock | ||
# # Runtime data | ||
# pids | ||
# *.pid | ||
# *.seed | ||
# *.pid.lock | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
# # Directory for instrumented libs generated by jscoverage/JSCover | ||
# lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
/coverage | ||
# # Coverage directory used by tools like istanbul | ||
# /coverage | ||
|
||
# nyc test coverage | ||
.nyc_output | ||
# # nyc test coverage | ||
# .nyc_output | ||
|
||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
# # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | ||
# .grunt | ||
|
||
# Bower dependency directory (https://bower.io/) | ||
bower_components | ||
# # Bower dependency directory (https://bower.io/) | ||
# bower_components | ||
|
||
# node-waf configuration | ||
.lock-wscript | ||
# # node-waf configuration | ||
# .lock-wscript | ||
|
||
# Compiled binary addons (https://nodejs.org/api/addons.html) | ||
build/Release | ||
# # Compiled binary addons (https://nodejs.org/api/addons.html) | ||
# build/Release | ||
|
||
# Dependency directories | ||
node_modules/ | ||
jspm_packages/ | ||
# # Dependency directories | ||
# node_modules/ | ||
# jspm_packages/ | ||
|
||
# TypeScript v1 declaration files | ||
typings/ | ||
# # TypeScript v1 declaration files | ||
# typings/ | ||
|
||
# Optional npm cache directory | ||
.npm | ||
# # Optional npm cache directory | ||
# .npm | ||
|
||
# Optional eslint cache | ||
.eslintcache | ||
# # Optional eslint cache | ||
# .eslintcache | ||
|
||
# Optional REPL history | ||
.node_repl_history | ||
# # Optional REPL history | ||
# .node_repl_history | ||
|
||
# Output of 'npm pack' | ||
*.tgz | ||
# # Output of 'npm pack' | ||
# *.tgz | ||
|
||
# Yarn Integrity file | ||
.yarn-integrity | ||
# # Yarn Integrity file | ||
# .yarn-integrity | ||
|
||
# dotenv environment variables file | ||
.env | ||
# # dotenv environment variables file | ||
# .env | ||
|
||
# next.js build output | ||
.next | ||
# # next.js build output | ||
# .next |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.