Add Git Ignore and Attribute files (#63)
This commit is contained in:
Родитель
0648f52981
Коммит
2bdba631bf
|
@ -0,0 +1,2 @@
|
|||
# Set the default behavior, in case contributors don't have core.autocrlf set.
|
||||
* text=auto
|
|
@ -0,0 +1,66 @@
|
|||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# Coverage directory used by tools like istanbul
|
||||
coverage
|
||||
cc-test-reporter
|
||||
|
||||
# Dependency directories
|
||||
node_modules/
|
||||
|
||||
# Typescript v1 declaration files
|
||||
typings/
|
||||
|
||||
# Optional npm cache directory
|
||||
.npm
|
||||
|
||||
# Optional eslint cache
|
||||
.eslintcache
|
||||
|
||||
# Yarn Integrity file
|
||||
.yarn-integrity
|
||||
|
||||
# dotenv environment variables file
|
||||
.env
|
||||
|
||||
# Ignore distribution directory
|
||||
dist/
|
||||
|
||||
# Ignore build www directories
|
||||
www/
|
||||
storybook-static
|
||||
|
||||
# Ignore Mac .DS_Store
|
||||
.DS_Store
|
||||
|
||||
#Ignore VSCode in Root
|
||||
.vscode/*
|
||||
!.vscode/settings.json
|
||||
!.vscode/tasks.json
|
||||
!.vscode/launch.json
|
||||
!.vscode/extensions.json
|
||||
*.code-workspace
|
||||
|
||||
# Local History for Visual Studio Code
|
||||
.history/
|
||||
|
||||
# Stores VSCode versions used for testing VSCode extensions
|
||||
.vscode-test
|
||||
|
||||
# tmp directories
|
||||
.tmp/
|
||||
temp/
|
||||
|
||||
# npm package-locks
|
||||
package-lock.json
|
||||
|
||||
# GitHub Actions Local Testing
|
||||
.github/workflows/testing/*.json
|
||||
|
||||
# Ignore Build Artefacts
|
||||
bin/
|
||||
obj/
|
Загрузка…
Ссылка в новой задаче