gitignore: Add .vscode & segregate editor settings

Reviewed-by: Joseph Nuthalapati <njoseph@riseup.net>
This commit is contained in:
Alice Kile 2020-02-19 12:22:31 +05:30 committed by Joseph Nuthalapati
parent 3e8c052258
commit 92d60ab7b4
No known key found for this signature in database
GPG Key ID: 5398F00A2FA43C35

9
.gitignore vendored
View File

@ -1,6 +1,5 @@
*.pyc *.pyc
*.py.bak *.py.bak
*.swp
*.tiny.css *.tiny.css
data/var/log/plinth/*.log data/var/log/plinth/*.log
data/var/lib/plinth/*.sqlite3 data/var/lib/plinth/*.sqlite3
@ -18,7 +17,6 @@ doc/dev/_build
*~ *~
predepend predepend
build/ build/
.emacs.desktop*
*.egg-info/ *.egg-info/
dist/ dist/
.coverage .coverage
@ -29,7 +27,6 @@ functional_tests/test_plinth/
geckodriver.log geckodriver.log
*.mo *.mo
.vagrant/ .vagrant/
.idea/
.DS_Store .DS_Store
*.box *.box
.eggs .eggs
@ -48,3 +45,9 @@ debian/plinth.debhelper.log
debian/plinth.substvars debian/plinth.substvars
debian/plinth/ debian/plinth/
*.pytest_cache/ *.pytest_cache/
# Editor settings
.vscode/
.idea/
*.swp
.emacs.desktop*