Skip to content

Commit 937ecbd

Browse files
author
Kinnaird McQuade
committed
Cleanup
0 parents  commit 937ecbd

File tree

120 files changed

+45032
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+45032
-0
lines changed

.editorconfig

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
[*]
2+
indent_style = space
3+
indent_size = 4
4+
insert_final_newline = true
5+
trim_trailing_whitespace = true
6+
end_of_line = lf
7+
charset = utf-8
8+
9+
# Docstrings and comments use max_line_length = 79
10+
[*.py]
11+
max_line_length = 119
12+
13+
[*.yml]
14+
indent_size = 2
15+
16+
[*.html]
17+
indent_size = 2
18+
19+
[*.json]
20+
indent_size = 2
21+
22+
[docs/**.txt]
23+
max_line_length = 79

.gitignore

+203
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,203 @@
1+
##### Working directories #####
2+
tmp/*
3+
!.gitkeep
4+
_notes
5+
results.*
6+
default.json
7+
default-iam-report.csv
8+
private/default-iam-results.json
9+
default-results-summary.csv
10+
private/*
11+
12+
Pipfile.lock
13+
14+
iam-report-fake-000011112222.html
15+
iam-triage-fake-000011112222.csv
16+
iam-report-fake.html
17+
iam-triage-fake.csv
18+
iam-results-example.json
19+
iam-triage-example.csv
20+
iam-report-example.html
21+
22+
## ReadTheDocs
23+
site/
24+
25+
##### HashiCorp #####
26+
#### Terraform
27+
# Local .terraform directories
28+
**/.terraform/*
29+
*.plan
30+
31+
# .tfstate files
32+
*.tfstate
33+
*.tfstate.*
34+
35+
# .tfvars files
36+
*.tfvars
37+
!terraform.tfvars
38+
39+
#### Vagrant
40+
.vagrant
41+
42+
#### Packer
43+
packer_cache/
44+
45+
# For built boxes
46+
*.box
47+
48+
##### Other #####
49+
*.pem
50+
51+
########## IDE ##########
52+
.idea
53+
.vscode
54+
55+
#### Log files
56+
*.log
57+
58+
# Generated most of this with https://www.gitignore.io/
59+
60+
########## Mac OSX ##########
61+
.DS_Store
62+
.AppleDouble
63+
.LSOverride
64+
65+
# Icon must end with two \r
66+
Icon
67+
68+
# Thumbnails
69+
._*
70+
71+
# Files that might appear in the root of a volume
72+
.DocumentRevisions-V100
73+
.fseventsd
74+
.Spotlight-V100
75+
.TemporaryItems
76+
.Trashes
77+
.VolumeIcon.icns
78+
.com.apple.timemachine.donotpresent
79+
80+
# Directories potentially created on remote AFP share
81+
.AppleDB
82+
.AppleDesktop
83+
Network Trash Folder
84+
Temporary Items
85+
.apdisk
86+
87+
########## Terraform ##########
88+
# Local .terraform directories
89+
**/.terraform/*
90+
*.plan
91+
92+
# .tfstate files
93+
*.tfstate
94+
*.tfstate.*
95+
96+
# .tfvars files
97+
*.tfvars
98+
!terraform.tfvars
99+
100+
########## Python ##########
101+
# Byte-compiled / optimized / DLL files
102+
__pycache__/
103+
*.py[cod]
104+
*$py.class
105+
106+
# C extensions
107+
*.so
108+
109+
# Distribution / packaging
110+
.Python
111+
build/
112+
develop-eggs/
113+
dist/
114+
downloads/
115+
eggs/
116+
.eggs/
117+
lib/
118+
lib64/
119+
parts/
120+
sdist/
121+
var/
122+
wheels/
123+
pip-wheel-metadata/
124+
share/python-wheels/
125+
*.egg-info/
126+
.installed.cfg
127+
*.egg
128+
MANIFEST
129+
130+
# PyInstaller
131+
# Usually these files are written by a python script from a template
132+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
133+
*.manifest
134+
*.spec
135+
136+
# Installer logs
137+
pip-log.txt
138+
pip-delete-this-directory.txt
139+
140+
# Unit test / coverage reports
141+
htmlcov/
142+
.tox/
143+
.nox/
144+
.coverage
145+
.coverage.*
146+
.cache
147+
nosetests.xml
148+
coverage.xml
149+
*.cover
150+
.hypothesis/
151+
.pytest_cache/
152+
153+
# Translations
154+
*.mo
155+
*.pot
156+
157+
# Scrapy stuff:
158+
.scrapy
159+
160+
# Sphinx documentation
161+
docs/_build/
162+
163+
# PyBuilder
164+
target/
165+
166+
# pyenv
167+
.python-version
168+
169+
# pipenv
170+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
171+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
172+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
173+
# install all needed dependencies.
174+
#Pipfile.lock
175+
176+
# celery beat schedule file
177+
celerybeat-schedule
178+
179+
# SageMath parsed files
180+
*.sage.py
181+
182+
# Spyder project settings
183+
.spyderproject
184+
.spyproject
185+
186+
# Rope project settings
187+
.ropeproject
188+
189+
# Mr Developer
190+
.mr.developer.cfg
191+
.project
192+
.pydevproject
193+
194+
# mkdocs documentation
195+
/site
196+
197+
# mypy
198+
.mypy_cache/
199+
.dmypy.json
200+
dmypy.json
201+
202+
# Pyre type checker
203+
.pyre/

0 commit comments

Comments
 (0)