Skip to content

Commit

Permalink
add cltkv1 repo
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle P. Johnson committed Aug 21, 2020
2 parents d96b50f + 88bd454 commit 7fb4430
Show file tree
Hide file tree
Showing 616 changed files with 36,989 additions and 64,588 deletions.
12 changes: 0 additions & 12 deletions .coveragerc

This file was deleted.

137 changes: 94 additions & 43 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,70 +1,121 @@
# pyenv
.python-version
# OS
.DS_Store

# mypy
.mypy_cache
# UML created by pyreverse
*.png

# IDE
.idea

# Sourcetrail
*.srctrlbm
*.srctrldb
*.srctrlprj

# pylint and pylint-json2html
pylint

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

# C extensions
*.so

# Packages
*.egg
*.egg-info
dist
build
eggs
parts
bin
var
sdist
develop-eggs
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
lib
lib64
__pycache__
*.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/
.coverage
.tox
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Mr Developer
.mr.developer.cfg
.project
.pydevproject
# Django stuff:
*.log
local_settings.py
db.sqlite3

# virtualenv
venv
# Flask stuff:
instance/
.webassets-cache

# text editor leavings
*\~
\#*
# Scrapy stuff:
.scrapy

# Sphinx
_build
#_static
_templates
# Sphinx documentation
docs/_build/

# Mac
.DS_Store
# PyBuilder
target/

# an IDE
.idea

# Jupyter notebook
# Jupyter Notebook
.ipynb_checkpoints
*.ipynb

# VSCode folder
.vscode/*
# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# cache
.cache
# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
4 changes: 0 additions & 4 deletions .noserc

This file was deleted.

42 changes: 42 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.3.0
hooks:
# - id: trailing-whitespace
- id: end-of-file-fixer
# - id: check-yaml
- id: check-toml
- id: check-added-large-files
- id: check-merge-conflict
- id: debug-statements
- repo: https://github.com/psf/black
rev: 19.3b0
hooks:
- id: black
- repo: https://github.com/asottile/blacken-docs
rev: v1.3.0
hooks:
- id: blacken-docs
- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.4.1
hooks:
- id: rst-backticks
#- repo: https://github.com/timothycrosley/isort
# rev: 4.3.21-2
# hooks:
# - id: isort
- repo: https://gitlab.com/smop/pre-commit-hooks
rev: v1.0.0
hooks:
- id: check-poetry
#- repo: https://github.com/pre-commit/mirrors-mypy
# rev: v0.720
# hooks:
# - id: mypy
# args: [--html-report .mypy_cache src/cltk]

default_language_version:
python: python3
Loading

0 comments on commit 7fb4430

Please sign in to comment.