Skip to content

Commit d5c69af

Browse files
authored
chore: update git and prettier ignores (#38)
These are generally all pretty standard stuff, though I had not realized `__pycache__` was a thing that Python generates as it turns out my IDE magically hides it from me. I've included the tool caches even though they actually include a `.gitignore` with a wildcard since that doesn't stop `prettier` from checking the directories and I think it's nicer to be consistent between the two files. I've also included `node_modules` and `vendor` since they're traditional and are usually very big so I think it's nice having them as a just-in-case
1 parent c1f5acb commit d5c69af

2 files changed

Lines changed: 16 additions & 8 deletions

File tree

.gitignore

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
cvelistV5
2-
drupal-security-advisories.xml
3-
dsa-contrib.xml
4-
dsa-core.xml
5-
files
6-
schema.json
1+
.idea/
2+
.vscode/
3+
.mypy_cache/
4+
.ruff_cache/
5+
.pytest_cache/
6+
__pycache__/
77
cache/
8+
node_modules/
9+
vendor/

.prettierignore

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
.mypy_cache
2-
.ruff_cache
1+
.idea/
2+
.vscode/
3+
.mypy_cache/
4+
.ruff_cache/
5+
.pytest_cache/
6+
__pycache__/
37
advisories/
48
cache/
9+
node_modules/
10+
vendor/

0 commit comments

Comments
 (0)