File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -46,18 +46,17 @@ docs = [
4646# local development options
4747dev = [" black[jupyter]" , " ruff" , " pytest" ]
4848
49- # Configure the Ruff linter: Ignore error number 501
5049[tool .ruff ]
5150# https://docs.astral.sh/ruff/rules/#flake8-bandit-s
52- # lint.ignore = ["E501"] # Ignore line length errors
53- # Allow lines to be as long as (default is 88 in black)
5451
5552[tool .ruff .lint ]
5653# https://docs.astral.sh/ruff/tutorial/#rule-selection
5754# 1. Enable flake8-bugbear (`B`) rules
5855# 2. Enable pycodestyle (`E`) errors and (`W`) warnings
5956# 3. Pyflakes (`F`) errors
6057extend-select = [" E" , " W" , " F" , " B" ]
58+ # Ignore line length errors:
59+ # ignore = ["E501"]
6160
6261[build-system ]
6362build-backend = " setuptools.build_meta"
You can’t perform that action at this time.
0 commit comments