Skip to content

Commit

Permalink
fine tune linting config
Browse files Browse the repository at this point in the history
  • Loading branch information
“RobHanna-NOAA” authored and “RobHanna-NOAA” committed Oct 31, 2024
1 parent 2329e3c commit 82c8bb4
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,16 @@ Wiki = "https://github.com/NOAA-OWP/inundation-mapping/wiki"
[tool.black]
skip-string-normalization = true
skip-magic-trailing-comma = true

extend-exclude = '''
(
# Ignore files ending with .csv
\.csv$
)
'''

[tool.isort]
profile = 'black'
line_length = 120
line_length = 110
multi_line_output = 3
lines_after_imports = 2

Expand All @@ -54,15 +59,15 @@ lines_after_imports = 2
count = true
doctests = true
max-complexity = 56
max-line-length = 120
max-line-length = 110
extend-ignore = """
E203,
E266,
E501,
W503,
W391
F403,
W391,
F401,
F403,
"""
exclude = ["*.csv"]

Expand Down

0 comments on commit 82c8bb4

Please sign in to comment.