Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
kmcquade committed Apr 30, 2020
0 parents commit 937ecbd
Show file tree
Hide file tree
Showing 120 changed files with 45,032 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[*]
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true
end_of_line = lf
charset = utf-8

# Docstrings and comments use max_line_length = 79
[*.py]
max_line_length = 119

[*.yml]
indent_size = 2

[*.html]
indent_size = 2

[*.json]
indent_size = 2

[docs/**.txt]
max_line_length = 79
203 changes: 203 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,203 @@
##### Working directories #####
tmp/*
!.gitkeep
_notes
results.*
default.json
default-iam-report.csv
private/default-iam-results.json
default-results-summary.csv
private/*

Pipfile.lock

iam-report-fake-000011112222.html
iam-triage-fake-000011112222.csv
iam-report-fake.html
iam-triage-fake.csv
iam-results-example.json
iam-triage-example.csv
iam-report-example.html

## ReadTheDocs
site/

##### HashiCorp #####
#### Terraform
# Local .terraform directories
**/.terraform/*
*.plan

# .tfstate files
*.tfstate
*.tfstate.*

# .tfvars files
*.tfvars
!terraform.tfvars

#### Vagrant
.vagrant

#### Packer
packer_cache/

# For built boxes
*.box

##### Other #####
*.pem

########## IDE ##########
.idea
.vscode

#### Log files
*.log

# Generated most of this with https://www.gitignore.io/

########## Mac OSX ##########
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

########## Terraform ##########
# Local .terraform directories
**/.terraform/*
*.plan

# .tfstate files
*.tfstate
*.tfstate.*

# .tfvars files
*.tfvars
!terraform.tfvars

########## Python ##########
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# pyenv
.python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# Mr Developer
.mr.developer.cfg
.project
.pydevproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/
Loading

0 comments on commit 937ecbd

Please sign in to comment.