-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add isort.check
setting
#125
Conversation
package.nls.json
Outdated
@@ -8,6 +8,7 @@ | |||
"settings.logLevel.off.description": "Most logging is turned off, any information that is always logged might still be shown.", | |||
"settings.logLevel.warn.description": "Includes all messages in the error category and any additional warnings.", | |||
"settings.args.description": "Arguments passed in. Each argument is a separate string in the array.", | |||
"settings.check.description": "Runs `isort` in check mode, and reports import sort issues.", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just to make sure I understand it correctly: check
will control whether the "imports are not correctly sorted" warning, is that correct?
Maybe something like "Controls whether to run isort
and report import sort issues"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That is correct, this is for showing the error/warning that imports are not sorted. I will update the text.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
closes microsoft/vscode-python#20029