-
Notifications
You must be signed in to change notification settings - Fork 48
Linting #179
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Linting #179
Changes from 14 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
4ddf5e9
Add pre-commit.
trexfeathers d807b63
Remove pep8 dependency.
trexfeathers 4d13cb8
Rename pre-commit.yaml.
trexfeathers 05fe465
Re-lint code base.
trexfeathers 46e0a7c
Requirements tidy.
trexfeathers c308a0a
Update CHANGES deprecation message.
trexfeathers 1e074d5
Remove .gitattributes now Versioneer is gone.
trexfeathers 2062e70
Update README.
trexfeathers 8bebf0a
Add Cirrus lint task.
trexfeathers 9c7a51b
Merge branch 'master' into linting
trexfeathers 036ede1
Python container for Cirrus lint task.
trexfeathers 80b3c61
Temporary increase to Codecov tolerance.
trexfeathers eb7a891
Revert "Temporary increase to Codecov tolerance."
trexfeathers 134d03d
Temporarily disable Codecov patch failure to allow for Black changes.
trexfeathers 7555e8f
Pre-commit just perform checks, don't modify.
trexfeathers File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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,37 @@ | ||
| # 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: 'v4.0.1' | ||
| hooks: | ||
| # Prevent giant files from being committed. | ||
| - id: check-added-large-files | ||
| # Check whether files parse as valid Python. | ||
| - id: check-ast | ||
| # Check for file name conflicts on case-insensitive filesytems. | ||
| - id: check-case-conflict | ||
| # Check for files that contain merge conflict strings. | ||
| - id: check-merge-conflict | ||
| # Check for debugger imports and py37+ `breakpoint()` calls in Python source. | ||
| - id: debug-statements | ||
| # Don't commit to main branch. | ||
| - id: no-commit-to-branch | ||
| - repo: https://github.com/psf/black | ||
| rev: '21.6b0' | ||
| hooks: | ||
| - id: black | ||
| # Force black to run on whole repo, using settings from pyproject.toml | ||
| pass_filenames: false | ||
| args: [--config=./pyproject.toml, .] | ||
| - repo: https://github.com/PyCQA/flake8 | ||
| rev: '3.9.2' | ||
| hooks: | ||
| # Run flake8. | ||
| - id: flake8 | ||
| args: [--config=./setup.cfg] | ||
| - repo: https://github.com/pycqa/isort | ||
| rev: '5.8.0' | ||
| hooks: | ||
| - id: isort | ||
| name: isort | ||
| args: ["--profile", "black", "--filter-files"] | ||
trexfeathers marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.