mirror of
https://github.com/zadam/trilium.git
synced 2025-06-06 18:08:33 +02:00
Merge pull request #2
Add OS and IDE files to the gitignore + Add documentation
This commit is contained in:
commit
fb1478f2dd
83
.gitignore
vendored
83
.gitignore
vendored
@ -1,16 +1,93 @@
|
|||||||
|
## Add all gitignores
|
||||||
|
!**/.gitignore
|
||||||
|
!.gitignore
|
||||||
|
## Empty folders which should be kept
|
||||||
|
!**/.keep
|
||||||
|
!.keep
|
||||||
|
|
||||||
|
#### OS
|
||||||
|
### Mac OS
|
||||||
|
## General
|
||||||
|
## macOS system files
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
.AppleDouble
|
||||||
|
.LSOverride
|
||||||
|
## Icon must end with two \r
|
||||||
|
Icon
|
||||||
|
## Thumbnails
|
||||||
|
._*
|
||||||
|
## Files that might appear in the root of a volume
|
||||||
|
.DocumentRevisions-V100
|
||||||
|
.fseventsd
|
||||||
|
.Spotlight-V100
|
||||||
|
.TemporaryItems
|
||||||
|
.Trashes
|
||||||
|
.VolumeIcon.icns
|
||||||
|
.com.apple.timemachine.donotpresent
|
||||||
|
## Directories potentially created on remote AFP share
|
||||||
|
.AppleDB
|
||||||
|
.AppleDesktop
|
||||||
|
Network Trash Folder
|
||||||
|
Temporary Items
|
||||||
|
.apdisk
|
||||||
|
### Linux template
|
||||||
|
*~
|
||||||
|
## temporary files which can be created if a process still has a handle open of a deleted file
|
||||||
|
.fuse_hidden*
|
||||||
|
## KDE directory preferences
|
||||||
|
.directory
|
||||||
|
## Linux trash folder which might appear on any partition or disk
|
||||||
|
.Trash-*
|
||||||
|
## .nfs files are created when an open file is removed but is still being accessed
|
||||||
|
.nfs*
|
||||||
|
|
||||||
|
##### Development
|
||||||
|
#### Node
|
||||||
|
## Node.js dependencies directory
|
||||||
node_modules/
|
node_modules/
|
||||||
|
## Build directories
|
||||||
dist/
|
dist/
|
||||||
src/public/app-dist/
|
src/public/app-dist/
|
||||||
|
## Log files generated
|
||||||
npm-debug.log
|
npm-debug.log
|
||||||
yarn-error.log
|
yarn-error.log
|
||||||
|
## Databases
|
||||||
*.db
|
*.db
|
||||||
|
## Keys & Certs
|
||||||
config.ini
|
config.ini
|
||||||
cert.key
|
cert.key
|
||||||
cert.crt
|
cert.crt
|
||||||
|
## Server-specific package.json
|
||||||
server-package.json
|
server-package.json
|
||||||
.idea/httpRequests/
|
#### ESLInt
|
||||||
|
## Cache
|
||||||
|
.eslintcache
|
||||||
|
### Tmp files
|
||||||
|
tmp/
|
||||||
|
|
||||||
|
##### IDEs
|
||||||
|
#### JetBrains
|
||||||
|
## Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
|
||||||
|
## Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
||||||
|
**/.idea/*
|
||||||
|
!**/.idea/.gitignore
|
||||||
|
#### VisualStudioCode / VSCode / VSCodium
|
||||||
|
.vscode/*
|
||||||
|
!.vscode/settings.json
|
||||||
|
!.vscode/tasks.json
|
||||||
|
!.vscode/launch.json
|
||||||
|
!.vscode/extensions.json
|
||||||
|
!.vscode/*.code-snippets
|
||||||
|
## Local History for Visual Studio Code
|
||||||
|
.history/
|
||||||
|
## Built Visual Studio Code Extensions
|
||||||
|
*.vsix
|
||||||
|
#### Kate template
|
||||||
|
## Swap Files
|
||||||
|
.*.kate-swp
|
||||||
|
.swp.*
|
||||||
|
|
||||||
|
## ---------------------
|
||||||
|
|
||||||
data/
|
data/
|
||||||
data-test/
|
data-test/
|
||||||
tmp/
|
|
||||||
.eslintcache
|
|
||||||
|
5
src/.idea/.gitignore
generated
vendored
Normal file
5
src/.idea/.gitignore
generated
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# Default ignored files
|
||||||
|
/shelf/
|
||||||
|
/workspace.xml
|
||||||
|
# Editor-based HTTP Client requests
|
||||||
|
/httpRequests/
|
Loading…
x
Reference in New Issue
Block a user