Skip to content

Commit 2c827b6

Browse files
author
Sergei Orlov
committed
🙈 Add ignore files
1 parent 9e26578 commit 2c827b6

File tree

2 files changed

+88
-16
lines changed

2 files changed

+88
-16
lines changed

.gitignore

Lines changed: 69 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
1+
# IDEs
2+
.idea
3+
.vscode
4+
5+
.DS_Store
6+
17
# Logs
28
logs
39
*.log
410
npm-debug.log*
511
yarn-debug.log*
612
yarn-error.log*
13+
lerna-debug.log*
14+
15+
# Diagnostic reports (https://nodejs.org/api/report.html)
16+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
717

818
# Runtime data
919
pids
@@ -16,11 +26,12 @@ lib-cov
1626

1727
# Coverage directory used by tools like istanbul
1828
coverage
29+
*.lcov
1930

2031
# nyc test coverage
2132
.nyc_output
2233

23-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
34+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
2435
.grunt
2536

2637
# Bower dependency directory (https://bower.io/)
@@ -29,41 +40,83 @@ bower_components
2940
# node-waf configuration
3041
.lock-wscript
3142

32-
# Compiled binary addons (http://nodejs.org/api/addons.html)
43+
# Compiled binary addons (https://nodejs.org/api/addons.html)
3344
build/Release
3445

3546
# Dependency directories
3647
node_modules/
3748
jspm_packages/
3849

39-
# Typescript v1 declaration files
40-
typings/
50+
# Snowpack dependency directory (https://snowpack.dev/)
51+
web_modules/
52+
53+
# TypeScript cache
54+
*.tsbuildinfo
4155

4256
# Optional npm cache directory
4357
.npm
4458

4559
# Optional eslint cache
4660
.eslintcache
4761

62+
# Microbundle cache
63+
.rpt2_cache/
64+
.rts2_cache_cjs/
65+
.rts2_cache_es/
66+
.rts2_cache_umd/
67+
4868
# Optional REPL history
4969
.node_repl_history
5070

5171
# Output of 'npm pack'
5272
*.tgz
5373

54-
# dotenv environment variable files
55-
.env*
74+
# Yarn Integrity file
75+
.yarn-integrity
76+
77+
# dotenv environment variables file
78+
.env
79+
.env.test
80+
81+
# parcel-bundler cache (https://parceljs.org/)
82+
.cache
83+
.parcel-cache
5684

57-
# gatsby files
85+
# Next.js build output
86+
.next
87+
out
88+
89+
# Nuxt.js build / generate output
90+
.nuxt
91+
dist
92+
93+
# Gatsby files
5894
.cache/
59-
public
95+
# Comment in the public line in if your project uses Gatsby and not Next.js
96+
# https://nextjs.org/blog/next-9-1#public-directory-support
97+
# public
6098

61-
# Mac files
62-
.DS_Store
99+
# vuepress build output
100+
.vuepress/dist
63101

64-
# Yarn
65-
yarn-error.log
66-
.pnp/
67-
.pnp.js
68-
# Yarn Integrity file
69-
.yarn-integrity
102+
# Serverless directories
103+
.serverless/
104+
105+
# FuseBox cache
106+
.fusebox/
107+
108+
# DynamoDB Local files
109+
.dynamodb/
110+
111+
# TernJS port file
112+
.tern-port
113+
114+
# Stores VSCode versions used for testing VSCode extensions
115+
.vscode-test
116+
117+
# yarn v2
118+
.yarn/cache
119+
.yarn/unplugged
120+
.yarn/build-state.yml
121+
.yarn/install-state.gz
122+
.pnp.*

.npmignore

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
.idea
2+
.github
3+
node_modules
4+
test
5+
images
6+
.eslinrc.js
7+
jest.config.js
8+
tsconfig.json
9+
yarn.lock
10+
coverage
11+
.nyc_output
12+
.gitignore
13+
tsconfig.tsbuildinfo
14+
changelog.md
15+
.commitlintrc
16+
docs
17+
images
18+
readme.md
19+

0 commit comments

Comments
 (0)