forked from bradleyg/django-s3direct
-
Notifications
You must be signed in to change notification settings - Fork 13
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
1 parent
1f6bfc4
commit 5ef93fb
Showing
15 changed files
with
188 additions
and
165 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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,44 +1,26 @@ | ||
repos: | ||
# python import sorting - will amend files | ||
- repo: https://github.com/pre-commit/mirrors-isort | ||
rev: v5.9.3 | ||
hooks: | ||
- id: isort | ||
|
||
# python code formatting - will amend files | ||
- repo: https://github.com/ambv/black | ||
rev: 21.9b0 | ||
rev: 23.10.1 | ||
hooks: | ||
- id: black | ||
|
||
- repo: https://github.com/asottile/pyupgrade | ||
rev: v2.29.0 | ||
hooks: | ||
- id: pyupgrade | ||
|
||
# Flake8 includes pyflakes, pycodestyle, mccabe, pydocstyle, bandit | ||
- repo: https://gitlab.com/pycqa/flake8 | ||
rev: 3.9.2 | ||
- repo: https://github.com/charliermarsh/ruff-pre-commit | ||
# Ruff version. | ||
rev: "v0.1.5" | ||
hooks: | ||
- id: flake8 | ||
additional_dependencies: | ||
- flake8-bandit | ||
- flake8-blind-except | ||
- flake8-docstrings | ||
- flake8-logging-format | ||
- flake8-print | ||
- id: ruff | ||
args: [--fix, --exit-non-zero-on-fix] | ||
|
||
# python static type checking | ||
- repo: https://github.com/pre-commit/mirrors-mypy | ||
rev: v0.910-1 | ||
rev: v1.7.0 | ||
hooks: | ||
- id: mypy | ||
# additional_dependencies: | ||
args: | ||
- --disallow-untyped-defs | ||
- --disallow-incomplete-defs | ||
- --check-untyped-defs | ||
- --no-implicit-optional | ||
- --ignore-missing-imports | ||
- --follow-imports=silent | ||
exclude: ^tests |
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,66 @@ | ||
line-length = 88 | ||
ignore = [ | ||
"D100", # Missing docstring in public module | ||
"D101", # Missing docstring in public class | ||
"D102", # Missing docstring in public method | ||
"D103", # Missing docstring in public function | ||
"D104", # Missing docstring in public package | ||
"D105", # Missing docstring in magic method | ||
"D106", # Missing docstring in public nested class | ||
"D107", # Missing docstring in __init__ | ||
"D203", # 1 blank line required before class docstring | ||
"D212", # Multi-line docstring summary should start at the first line | ||
"D213", # Multi-line docstring summary should start at the second line | ||
"D404", # First word of the docstring should not be "This" | ||
"D405", # Section name should be properly capitalized | ||
"D406", # Section name should end with a newline | ||
"D407", # Missing dashed underline after section | ||
"D410", # Missing blank line after section | ||
"D411", # Missing blank line before section | ||
"D412", # No blank lines allowed between a section header and its content | ||
"D416", # Section name should end with a colon | ||
"D417", | ||
"D417", # Missing argument description in the docstring | ||
] | ||
select = [ | ||
"A", # flake8 builtins | ||
"C9", # mcabe | ||
"D", # pydocstyle | ||
"E", # pycodestyle (errors) | ||
"F", # Pyflakes | ||
"I", # isort | ||
"S", # flake8-bandit | ||
"T2", # flake8-print | ||
"W", # pycodestype (warnings) | ||
] | ||
|
||
[isort] | ||
combine-as-imports = true | ||
|
||
[mccabe] | ||
max-complexity = 8 | ||
|
||
[per-file-ignores] | ||
"*tests/*" = [ | ||
"D205", # 1 blank line required between summary line and description | ||
"D400", # First line should end with a period | ||
"D401", # First line should be in imperative mood | ||
"D415", # First line should end with a period, question mark, or exclamation point | ||
"E501", # Line too long | ||
"E731", # Do not assign a lambda expression, use a def | ||
"S101", # Use of assert detected | ||
"S105", # Possible hardcoded password | ||
"S106", # Possible hardcoded password | ||
"S113", # Probable use of requests call with timeout set to {value} | ||
] | ||
"*/migrations/*" = [ | ||
"E501", # Line too long | ||
] | ||
"*/settings.py" = [ | ||
"F403", # from {name} import * used; unable to detect undefined names | ||
"F405", # {name} may be undefined, or defined from star imports: | ||
] | ||
"*/settings/*" = [ | ||
"F403", # from {name} import * used; unable to detect undefined names | ||
"F405", # {name} may be undefined, or defined from star imports: | ||
] |
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
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
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 |
---|---|---|
|
@@ -7,7 +7,6 @@ | |
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
initial = True | ||
|
||
dependencies = [] | ||
|
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
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 |
---|---|---|
@@ -1 +0,0 @@ | ||
default_app_config = "s3upload.apps.S3UploadAppConfig" | ||
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
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
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
Oops, something went wrong.