Replies: 2 comments
-
I have Ruff Language Server selected in VS Code terminal OUTPUT tab in case if it supposed to be #15991, where I don't see |
Beta Was this translation helpful? Give feedback.
-
I think the TOML parsing issue is from your sections = { "future" = [], "standard-library" = [], "third-party" = [], "second-party" = [], "first-party" = [], "data" = [], "local-folder" = [] } where you include the packages you want to add to the section in the nested lists. This is probably a better way to format it: [tool.ruff.isort.sections]
future = []
standard-library = []
third-party = []
second-party = []
first-party = []
data = []
local-folder = [] Alternatively, I think your input might be valid for the |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I am new to RUFF and I am trying to use RUFF on my code base to improve readability. I am updating my pyproject.toml in support of RUFF from flake8, pylint, isort (I am aware not all rules from flake8, pylint, isort) are fully implemented in RUFF but the error doesn't have anything to do with those implementations.
My pyproject.toml looks like below
Any help in fixxing error in TOML files, I am not sure why I am getting error.
Beta Was this translation helpful? Give feedback.
All reactions