-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 47cb73c
Showing
210 changed files
with
10,470 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[bumpversion] | ||
files = VERSION .bumpversion.cfg | ||
commit = True | ||
tag = False | ||
current_version = v1.0.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
.dockerignore | ||
docker-compose.yml | ||
node_modules/ | ||
.git/ | ||
coverage/ | ||
|
||
Dockerfile | ||
|
||
.gitignore | ||
.env | ||
.eslintrc | ||
.editorconfig | ||
.git* | ||
|
||
.vagrant/ | ||
.cache/ | ||
.wercker/ | ||
.sass-cache/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# http://editorconfig.org | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
trim_trailing_whitespace = true | ||
charset = utf-8 | ||
insert_final_newline = false | ||
|
||
[*.{py,sh,sql}] | ||
max_line_length = 80 | ||
indent_size = 4 | ||
|
||
[*.md] | ||
max_line_length = 80 | ||
trim_trailing_whitespace = false | ||
|
||
# Tabs | ||
[*.{less,css}] | ||
indent_style = tab | ||
|
||
[Vagrantfile] | ||
indent_style = tab | ||
|
||
[Makefile] | ||
indent_size = 4 | ||
indent_style = tab |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
# Path-based git attributes | ||
|
||
# https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html | ||
|
||
## Test/documentation | ||
|
||
# Ignore all test and documentation with "export-ignore". | ||
/.gitattributes export-ignore | ||
/.githooks export-ignore | ||
/.gitignore export-ignore | ||
/.travis.yml export-ignore | ||
/.travis.yaml export-ignore | ||
/phpunit.xml.dist export-ignore | ||
/.scrutinizer.yml export-ignore | ||
/.scrutinizer.yaml export-ignore | ||
/tests export-ignore | ||
|
||
## Merging | ||
CHANGELOG.md merge=union | ||
|
||
## Line endings | ||
|
||
### Automatic | ||
|
||
# Handle line endings automatically for files detected as text | ||
# and leave all files detected as binary untouched. | ||
* text=auto eol=lf | ||
|
||
### Text (should be normalized, convert crlf => lf) | ||
|
||
# Source | ||
*.php text eol=lf | ||
*.css text eol=lf | ||
*.sass text eol=lf | ||
*.scss text eol=lf | ||
*.less text eol=lf | ||
*.styl text eol=lf | ||
*.js text eol=lf | ||
*.coffee text eol=lf | ||
*.json text eol=lf | ||
*.htm text eol=lf | ||
*.html text eol=lf | ||
*.xml text eol=lf | ||
*.svg text eol=lf | ||
*.txt text eol=lf | ||
*.ini text eol=lf | ||
*.inc text eol=lf | ||
*.pl text eol=lf | ||
*.rb text eol=lf | ||
*.py text eol=lf | ||
*.scm text eol=lf | ||
*.sql text eol=lf | ||
*.sh text eol=lf | ||
*.bat text eol=lf | ||
|
||
# Templates | ||
*.ejs text eol=lf | ||
*.hbt text eol=lf | ||
*.jade text eol=lf | ||
*.haml text eol=lf | ||
*.hbs text eol=lf | ||
*.dot text eol=lf | ||
*.tmpl text eol=lf | ||
*.phtml text eol=lf | ||
|
||
# App config | ||
.env text eol=lf | ||
.env.example text eol=lf | ||
|
||
# Server config | ||
.htaccess text eol=lf | ||
|
||
# Git config | ||
.gitattributes text eol=lf | ||
.gitignore text eol=lf | ||
|
||
# Code analysis config | ||
.jshintrc text eol=lf | ||
.jscsrc text eol=lf | ||
.jshintignore text eol=lf | ||
.csslintrc text eol=lf | ||
|
||
# Misc config | ||
*.yaml text eol=lf | ||
*.yml text eol=lf | ||
*.yaml text eol=lf | ||
.editorconfig text eol=lf | ||
|
||
# Build config | ||
composer.lock text eol=lf | ||
*.npmignore text eol=lf | ||
*.bowerrc text eol=lf | ||
|
||
# Heroku | ||
Procfile text eol=lf | ||
.slugignore text eol=lf | ||
|
||
# Documentation | ||
*.md text eol=lf | ||
LICENSE text eol=lf | ||
AUTHORS text eol=lf | ||
|
||
# Vagrant | ||
Vagrantfile eol=lf | ||
|
||
# Scripts | ||
bin/* text eol=lf | ||
|
||
### Binary (left untouched) | ||
|
||
# (binary is a macro for -text -diff) | ||
*.png binary | ||
*.jpg binary | ||
*.jpeg binary | ||
*.gif binary | ||
*.ico binary | ||
*.mov binary | ||
*.mp4 binary | ||
*.mp3 binary | ||
*.mwb binary | ||
*.flv binary | ||
*.fla binary | ||
*.swf binary | ||
*.gz binary | ||
*.zip binary | ||
*.7z binary | ||
*.rar binary | ||
*.ttf binary | ||
*.eot binary | ||
*.woff binary | ||
*.woff2 binary | ||
*.otf binary | ||
*.pyc binary | ||
*.pdf binary | ||
*.bz2 binary | ||
# Excel | ||
*.xlsx binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
.env | ||
|
||
# Celery | ||
celerybeat-schedule | ||
celerybeat.pid | ||
|
||
# Development static and media files | ||
static | ||
# staticfiles | ||
media | ||
|
||
# gulp-compass metafile | ||
css | ||
|
||
# Redis | ||
dump.rdb | ||
|
||
# Node metadata | ||
node_modules | ||
|
||
# SASS metadata | ||
*.sass-cache | ||
|
||
# Bower directory | ||
bower_components | ||
|
||
# Development database | ||
*.sqlite3 | ||
*.db | ||
|
||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
|
||
# Unit test / coverage reports | ||
htmlcov/ | ||
.tox/ | ||
.coverage | ||
.cache | ||
nosetests.xml | ||
coverage.xml | ||
|
||
# Django stuff: | ||
*.log | ||
*.pot | ||
.vagrant | ||
|
||
Gemfile.lock | ||
.env | ||
*.orig | ||
.DS_Store | ||
dumps/ | ||
*.dat | ||
*.bak | ||
*.dir |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
6.10.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
- repo: [email protected]:pre-commit/pre-commit-hooks | ||
sha: 5bf6c09bfa1297d3692cadd621ef95f1284e33c0 | ||
hooks: | ||
- id: detect-private-key | ||
files: ^(?!\.?git-crypt) | ||
- id: check-merge-conflict | ||
- id: trailing-whitespace | ||
language_version: python3 | ||
files: ^tf|-|\.(py|tfvars|tf|tfenv|env|yml|yaml|pem|key|mock)$ | ||
- id: end-of-file-fixer | ||
files: ^tf|-|\.(py|tfvars|tf|tfenv|env|yml|yaml|pem|key|mock)$ | ||
language_version: python3 | ||
- id: check-added-large-files | ||
files: ^tf|-|\.(py|env|yml|yaml)$ | ||
- id: check-case-conflict | ||
- id: check-json | ||
language_version: python3 | ||
- id: check-xml | ||
language_version: python3 | ||
- id: check-yaml | ||
language_version: python3 | ||
- id: check-case-conflict | ||
- id: check-ast | ||
language_version: python3 | ||
- id: debug-statements | ||
- id: autopep8-wrapper | ||
args: | ||
- -i | ||
- --ignore=E501 | ||
language_version: python3 | ||
- id: double-quote-string-fixer | ||
- id: check-docstring-first | ||
- id: pretty-format-json | ||
- id: requirements-txt-fixer | ||
- id: name-tests-test | ||
- repo: git://github.com/pre-commit/mirrors-pylint | ||
sha: v1.6.4.post1 | ||
hooks: | ||
- id: pylint | ||
language_version: python3 | ||
args: | ||
- --rcfile=.pylintrc | ||
exclude: setup.py | ||
- repo: git://github.com/pre-commit/mirrors-scss-lint | ||
sha: v0.52.0 | ||
hooks: | ||
- id: scss-lint | ||
files: \.(scss)$ | ||
- repo: [email protected]:pre-commit/pre-commit | ||
sha: 1be4e4f82e31336fa5fca096c962c72ac0041537 | ||
hooks: | ||
- id: validate_config | ||
- id: validate_manifest | ||
- repo: git://github.com/FalconSocial/pre-commit-python-sorter | ||
sha: b57843b0b874df1d16eb0bef00b868792cb245c2 | ||
hooks: | ||
- id: python-import-sorter | ||
args: | ||
- --silent-overwrite | ||
language_version: python3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
-/log | ||
-/tmp | ||
-/.git | ||
-/auto-save-list | ||
-*.cache | ||
-*.pyc | ||
-.wercker/* | ||
-projectile-bookmarks.eld |
Oops, something went wrong.