-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
63 lines (46 loc) · 1.11 KB
/
.gitignore
File metadata and controls
63 lines (46 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# jetbrains apps
*.iml
*.ipr
*.iws
.idea/
# Visual Studio Code
.vscode/
# .env file
# We need to exclude the env file because we temproally create such a file in our github actions
# The action would fail if there would still be uncommited files (like the .env file)
.env
# osx
.DS_Store
# emacs
*~
# Microsoft Office
~$*
# Git
*.orig
### ----------------------------------------------------------------------------
### Folders
### ----------------------------------------------------------------------------
# Coverage Data for example by JEST
coverage/
# Build folder used by CKEditor Tooling, especially test-scripts.
build/
# Folder we defined to contain the built artifacts.
dist/
node_modules/
# Ignore compiled TypeScript files.
**/src/**/*.js
**/src/**/*.js.map
**/src/**/*.d.ts
**/src/**/*.d.ts.map
# Ignore TypeScript Buildinfo
*.tsbuildinfo
# Temporary Output
*.log
*.out
*.err
tmp/
### ----------------------------------------------------------------------------
### PNPM
### ----------------------------------------------------------------------------
# Results from `pnpm pack` (to test packaging)
*.tgz