mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-12-14 02:36:57 +00:00
Redo of the PR #598 **Added:** - Russian Translations **Fixed:** - corrected .gitignore rules for default modules (Reasoning behind change: when I added translation for `alert` module `git add` was telling me that `.gitignore` rule excludes files and folders under `modules/default`) I also noticed that `.gitignore:56` has following declaration: ``` !/modules/node_helper !/modules/node_helper/** ``` but I don't think this directory structure exists today (also there is a small typo)
68 lines
905 B
Plaintext
68 lines
905 B
Plaintext
# Various Node ignoramuses.
|
|
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
pids
|
|
*.pid
|
|
*.seed
|
|
lib-cov
|
|
coverage
|
|
.grunt
|
|
.lock-wscript
|
|
build/Release
|
|
node_modules
|
|
jspm_modules
|
|
.npm
|
|
.node_repl_history
|
|
|
|
# Various Windows ignoramuses.
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
$RECYCLE.BIN/
|
|
*.cab
|
|
*.msi
|
|
*.msm
|
|
*.msp
|
|
*.lnk
|
|
|
|
# Various OSX ignoramuses.
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
Icon
|
|
._*
|
|
.DocumentRevisions-V100
|
|
.fseventsd
|
|
.Spotlight-V100
|
|
.TemporaryItems
|
|
.Trashes
|
|
.VolumeIcon.icns
|
|
.AppleDB
|
|
.AppleDesktop
|
|
Network Trash Folder
|
|
Temporary Items
|
|
.apdisk
|
|
|
|
# Various Linux ignoramuses.
|
|
|
|
.fuse_hidden*
|
|
.directory
|
|
.Trash-*
|
|
|
|
# Various Magic Mirror ignoramuses and anti-ignoramuses.
|
|
|
|
# Don't ignore the node_helper nore module.
|
|
!/modules/node_helper
|
|
!/modules/node_helper/**
|
|
|
|
# Ignore all modules except the default modules.
|
|
!/modules/
|
|
/modules/*
|
|
!/modules/default/
|
|
!/modules/README.md**
|
|
|
|
# Ignore changes to the custom css files.
|
|
/css/custom.css
|