1
0
mirror of https://gitlab.com/baco/dotconf.git synced 2024-06-18 13:57:04 +00:00
dotfiles/ruff/ruff.toml
Dionisio E Alonso 4dfdba8ac7 feat(LSP): Bump configuration for Ruff
With latest Ruff version, some of the settings in the configuration
files were relocated.  This patch corrects those category names.
2024-02-23 17:42:29 -03:00

7 lines
130 B
TOML

line-length = 79
[lint]
extend-select = [
"E", "W", "F", "C90", # Pycodestyle + Pyflakes + McCabe = Flake8
"PL", # Pylint
]