Skip to content

Commit 5276fab

Browse files
committed
feat: Add .gitignore and .prettierignore
1 parent 84ebad9 commit 5276fab

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

.gitignore

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# General
2+
.cache
3+
4+
# Ansible
5+
*.retry
6+
7+
# Python
8+
## Byte-compiled / optimized / DLL files
9+
__pycache__/
10+
*.py[cod]
11+
*$py.class

.prettierignore

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# files we don't want prettier to ever to look into
2+
.*/
3+
coverage/
4+
5+
# Environments
6+
.env
7+
.venv
8+
env/
9+
venv/
10+
ENV/
11+
env.bak/
12+
venv.bak/
13+
14+
# A linked collection directory created by pytest-ansible-units
15+
collections/
16+
17+
tests/output/
18+
19+
README.md

0 commit comments

Comments
 (0)