-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
47 lines (41 loc) · 803 Bytes
/
Copy path.gitignore
File metadata and controls
47 lines (41 loc) · 803 Bytes
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
# ----------------------------
# General project hygiene
# ----------------------------
# OS junk
.DS_Store
._*
.Spotlight-V100
.Trashes
Thumbs.db
ehthumbs.db
Desktop.ini
# Editors / IDEs
.vscode/
.idea/
*.code-workspace
# Logs & temps
*.log
*.tmp
*.temp
~$*
*.bak
# ----------------------------
# Power BI specifics
# ----------------------------
# Allow .pbix to be committed (recommended via Git LFS)
# Do NOT ignore *.pbix
# Ignore autosaves and crash files
*.pbix.autosave
*.pbit.autosave
# Preview/cache thumbnails from screenshots, etc.
*.thumb
*.cache
# ----------------------------
# Data folders
# ----------------------------
# Keep private/raw data out of the repo by default
data/private/*
data/raw/*
data/output/*
# But keep the sample dataset for reproducible demos
!data/sample/**