generated from canisminor1990/canisminor-template
-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
653ad8d
commit aa7f702
Showing
4 changed files
with
107 additions
and
60 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,4 +1,5 @@ | ||
# http://editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
|
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,9 +1,28 @@ | ||
/example | ||
# Eslintignore for LobeHub | ||
################################################################ | ||
|
||
# dependencies | ||
node_modules | ||
|
||
# ci | ||
.coverage | ||
|
||
# test | ||
jest* | ||
_test_ | ||
__test__ | ||
/node_modules | ||
jest* | ||
/es | ||
/lib | ||
/docs | ||
/dist | ||
|
||
# umi | ||
.umi | ||
.umi-production | ||
.umi-test | ||
.dumi/tmp* | ||
|
||
# production | ||
dist | ||
es | ||
lib | ||
logs | ||
|
||
# misc | ||
# add other ignore file below |
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,41 +1,43 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
# Gitignore for LobeHub | ||
################################################################ | ||
|
||
# general | ||
.DS_Store | ||
.idea | ||
.vscode | ||
.history | ||
.temp | ||
.env.local | ||
venv | ||
temp | ||
tmp | ||
|
||
# dependencies | ||
**/node_modules | ||
npm-debug.log* | ||
yarn-error.log | ||
node_modules | ||
*.log | ||
*.lock | ||
package-lock.json | ||
|
||
# production | ||
**/dist | ||
/plugins/ | ||
/es | ||
/lib | ||
/logs | ||
|
||
# misc | ||
.DS_Store | ||
# ci | ||
.coverage | ||
.eslintcache | ||
.stylelintcache | ||
|
||
# umi | ||
/src/.umi | ||
/src/.umi-production | ||
/src/.umi-test | ||
/.env.local | ||
# production | ||
dist | ||
es | ||
lib | ||
logs | ||
test-output | ||
|
||
# ide | ||
.idea | ||
.vscode | ||
.history | ||
*.log | ||
functions/* | ||
lambda/mock/index.js | ||
.temp/** | ||
# umi | ||
.umi | ||
.umi-production | ||
.umi-test | ||
.dumi/tmp* | ||
|
||
# test | ||
**/test-output | ||
config.yml | ||
yarn.lock | ||
venv | ||
temp | ||
# husky | ||
.husky/prepare-commit-msg | ||
|
||
# misc | ||
# add other ignore file below |
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,25 +1,50 @@ | ||
**/*.svg | ||
.umi | ||
.umi-production | ||
/dist | ||
.dockerignore | ||
# Prettierignore for LobeHub | ||
################################################################ | ||
|
||
# general | ||
.DS_Store | ||
.eslintignore | ||
*.png | ||
*.jpg | ||
*.webp | ||
*.toml | ||
*.py | ||
docker | ||
.editorconfig | ||
Dockerfile* | ||
.gitignore | ||
.prettierignore | ||
LICENSE | ||
.eslintcache | ||
*.lock | ||
yarn-error.log | ||
.idea | ||
.vscode | ||
.history | ||
.temp | ||
.env.local | ||
.husky | ||
.npmrc | ||
.env.local | ||
venv | ||
temp | ||
tmp | ||
LICENSE | ||
|
||
# dependencies | ||
node_modules | ||
*.log | ||
*.lock | ||
package-lock.json | ||
|
||
# ci | ||
.coverage | ||
.eslintcache | ||
.stylelintcache | ||
test-output | ||
|
||
# production | ||
dist | ||
es | ||
lib | ||
logs | ||
|
||
# umi | ||
.umi | ||
.umi-production | ||
.umi-test | ||
.dumi/tmp* | ||
|
||
# ignore files | ||
.*ignore | ||
|
||
# docker | ||
docker | ||
Dockerfile* | ||
|
||
# misc | ||
# add other ignore file below |