-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy path.gitignore
More file actions
36 lines (27 loc) · 708 Bytes
/
Copy path.gitignore
File metadata and controls
36 lines (27 loc) · 708 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
# vscode
.vscode
# Intellij
*.iml
.idea
# npm
node_modules
# Don't include the compiled main.js file in the repo.
# Don't include the Obsidian test vault plugin settings.
# They should be uploaded to GitHub releases instead.
build
# Exclude sourcemaps
*.map
# Exclude macOS Finder (System Explorer) View States
.DS_Store
# Ignore Obsidian workspaces file
test/.obsidian/workspace.json
# Ignore 3rd-party plugins in the test vault — they are not part of this
# plugin and shouldn't be flagged by the Obsidian community scan.
# Keep only the symlink to our own build output.
test/.obsidian/plugins/*
!test/.obsidian/plugins/obsidian-ical-plugin
# Test coverage
coverage/
*.lcov
# Jest cache
.cache/