Skip to content

Commit

Permalink
future-effective-filings
Browse files Browse the repository at this point in the history
  • Loading branch information
tshyun24 committed Feb 1, 2024
1 parent 9595bf8 commit 3da21ea
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
19 changes: 17 additions & 2 deletions jobs/future-effective-filings/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,13 @@ exclude_dirs = [".venv","tests"]
skips = ["B104"]

[tool.flake8]
ignore = ["F401","E402", "Q000", "E203", "W503", "W504" ]
ignore = ["F401","E402", "Q000", "E203", "W503"]
exclude = [
".venv",
".git",
"*migrations*"
".history",
"devops",
"*migrations*",
]
per-file-ignores = [
"__init__.py:F401",
Expand All @@ -67,10 +69,23 @@ docstring-min-length=10
count = true

[tool.black]
target-version = ["py310", "py311", "py312"]
line-length = 120
include = '\.pyi?$'
extend-exclude = '''
/(
# The following are specific to Black, you probably don't want those.
migrations
| devops
)/
'''

[tool.isort]
atomic = true
profile = "black"
line_length = 120
skip_gitignore = true
skip_glob = ["migrations", "devops"]

[tool.pylint.main]
fail-under = 10
Expand Down
3 changes: 3 additions & 0 deletions jobs/future-effective-filings/tests/test_dummy.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
def test_dummy(): # pylint: disable=missing-module-docstring
"""a dummy test for placeholder"""
assert True is True # pylint: disable=R0124, R0133

0 comments on commit 3da21ea

Please sign in to comment.