Skip to content

Commit d422abb

Browse files
committed
Second commit
1 parent 950fc0d commit d422abb

File tree

5 files changed

+118
-1
lines changed

5 files changed

+118
-1
lines changed

.editorconfig

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# http://editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
indent_style = space
7+
indent_size = 4
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
charset = utf-8
11+
end_of_line = lf
12+
13+
[*.bat]
14+
indent_style = tab
15+
end_of_line = crlf
16+
17+
[LICENSE]
18+
insert_final_newline = false
19+
20+
[Makefile]
21+
indent_style = tab

.github/ISSUE_TEMPLATE.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
* checksit version:
2+
* Python version:
3+
* Operating System:
4+
5+
### Description
6+
7+
Describe what you were trying to get done.
8+
Tell us what happened, what went wrong, and what you expected to happen.
9+
10+
### What I Did
11+
12+
```
13+
Paste the command(s) you ran and the output.
14+
If there was a crash, please include the traceback here.
15+
```

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,4 +108,4 @@ ENV/
108108
# Application-specific
109109
*.err
110110
*.out
111-
111+
setup-env.sh

.pre-commit-config.yaml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
default_language_version:
2+
python: python3
3+
4+
repos:
5+
- repo: https://github.com/pre-commit/pre-commit-hooks
6+
rev: v3.3.0
7+
hooks:
8+
- id: trailing-whitespace
9+
language_version: python3
10+
exclude: setup.cfg
11+
- id: end-of-file-fixer
12+
language_version: python3
13+
exclude: setup.cfg
14+
- id: check-yaml
15+
language_version: python3
16+
- id: debug-statements
17+
language_version: python3
18+
- repo: https://github.com/ambv/black
19+
rev: 20.8b1
20+
hooks:
21+
- id: black
22+
language_version: python3
23+
args: ["--target-version", "py36"]
24+
- repo: https://github.com/pycqa/flake8
25+
rev: 3.8.4
26+
hooks:
27+
- id: flake8
28+
# optional dependencies to check docstrings as in tox.ini
29+
# additional_dependencies: [
30+
# 'flake8-docstrings',
31+
# 'flake8-rst-docstrings']
32+
language_version: python3
33+
args: ['--config=setup.cfg']
34+
- repo: https://github.com/timothycrosley/isort
35+
rev: 5.6.4
36+
hooks:
37+
- id: isort
38+
language_version: python3
39+
args: ['--profile', 'black']
40+
- repo: https://github.com/asottile/pyupgrade
41+
rev: v2.7.3
42+
hooks:
43+
- id: pyupgrade
44+
language_version: python3
45+
- repo: meta
46+
hooks:
47+
- id: check-hooks-apply
48+
- id: check-useless-excludes
49+
#- repo: https://github.com/kynan/nbstripout
50+
# rev: 0.3.9
51+
# hooks:
52+
# - id: nbstripout
53+
# language_version: python3
54+
# files: ".ipynb"

.readthedocs.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# .readthedocs.yml
2+
# Read the Docs configuration file
3+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4+
5+
# Required
6+
version: 2
7+
8+
# Build documentation in the docs/ directory with Sphinx
9+
sphinx:
10+
configuration: docs/conf.py
11+
12+
# Optionally build your docs in additional formats such as PDF and ePub
13+
formats: all
14+
15+
# Optionally set the version of Python and requirements required to build your docs
16+
#python:
17+
# version: 3.8
18+
python:
19+
version: 3.8
20+
install:
21+
- method: pip
22+
path: .
23+
extra_requirements:
24+
- docs
25+
26+
build:
27+
image: stable

0 commit comments

Comments
 (0)