Move app/.gitignore entries to .gitignore

`app/.gitignore` existed to list anything that we
wanted ignored from the repository but not listed
in `.cfignore` (which just symlinked the
`.gitinore` at the root).

Now `.gitignore` and `.cfignore` are split, this
is no longer necessary.
This commit is contained in:
Tom Byers
2019-12-02 16:44:12 +00:00
parent 200a9d479a
commit ccbad51ebd
2 changed files with 2 additions and 2 deletions

2
.gitignore vendored
View File

@@ -23,6 +23,7 @@ var/
.installed.cfg
*.egg
venv/
app/version.py
# PyInstaller
# Usually these files are written by a python script from a template
@@ -62,6 +63,7 @@ target/
.vscode
# Frontend dependencies and compiled assets
app/static
app/assets/stylesheets/govuk_template/.sass-cache/
.sass-cache/
cache/

2
app/.gitignore vendored
View File

@@ -1,2 +0,0 @@
/version.py
/static