Skip to content

Commit 8c8090a

Browse files
chore: fix trailling whitespace (linting)
1 parent 89b34a0 commit 8c8090a

10 files changed

+18
-9
lines changed

.flake8

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ exclude = venv*,__pycache__,node_modules,bower_components,migrations
66
ignore = D203, W503
77
max-complexity = 9
88
max-line-length = 79
9-
extend-ignore = E203
9+
extend-ignore = E203

.github/ISSUE_TEMPLATE/bug_report_template.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ assignees: ''
3737
reproduce the problem --->
3838

3939
**Additional context**
40-
<!--- Add any other context about the problem here. --->
40+
<!--- Add any other context about the problem here. --->

.github/ISSUE_TEMPLATE/feature_request_template.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ please note them here. Feel free to suggest multiple approaches and consider
1818
any tradeoffs and considerations for the future --->
1919

2020
**Additional context**
21-
<!--- Add any other context or screenshots about the feature request here. --->
21+
<!--- Add any other context or screenshots about the feature request here. --->

.github/code_review_template.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ Any new code includes all the following forms of documentation:
2121

2222
- [ ] **I recommend merging this request.**
2323

24-
### Review comments
24+
### Review comments

.github/pull_request_template.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ additional context, for example 'changes in file X are for reasons Y and Z'
3939
- [ ] Any dependent changes have been merged and published in downstream modules
4040

4141
## Additional comments
42-
<!--- Add any additional comments here --->
42+
<!--- Add any additional comments here --->

.github/workflows/codecov.yml

+9
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,15 @@ jobs:
2727
pip install coverage[toml]
2828
pip install -e .
2929
30+
- name: pre-commit
31+
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # sha for v4.0.2
32+
with:
33+
path: ~/.cache/pre-commit/
34+
key: pre-commit-4|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}
35+
- run: |
36+
pre-commit install
37+
pre-commit run --show-diff-on-failure --color=always --all-files
38+
3039
- name: Generate Report
3140
run: |
3241
coverage run -m pytest

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,4 @@ repos:
7777
hooks:
7878
- id: pydocstyle
7979
args:
80-
- --ignore=D107,D203,D204,D213
80+
- --ignore=D107,D203,D204,D213

.pydocstyle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[pydocstyle]
22
# Rule definitions: http://www.pydocstyle.org/en/2.1.1/error_codes.html
3-
convention = numpy
3+
convention = numpy

CODE_OF_CONDUCT.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,4 @@ available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.ht
7373
[homepage]: https://www.contributor-covenant.org
7474

7575
For answers to common questions about this code of conduct, see
76-
https://www.contributor-covenant.org/faq
76+
https://www.contributor-covenant.org/faq

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ Set-up expectations:
2424
| Os: | macOS |
2525
| Package manager: | pip |
2626

27-
**Further information will follow as we begin to push code.**
27+
**Further information will follow as we begin to push code.**

0 commit comments

Comments
 (0)