summaryrefslogtreecommitdiffstats
path: root/.vscode/settings.json
diff options
context:
space:
mode:
Diffstat (limited to '.vscode/settings.json')
-rw-r--r--.vscode/settings.json23
1 files changed, 9 insertions, 14 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json
index d17cb5b..bbfb53d 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -12,27 +12,20 @@
"build": true
},
"git.ignoreLimitWarning": true,
- "grammarly.domain": "technical",
+ "grammarly.config.documentDomain": "academic",
"grammarly.files.include": [
"**/*.txt",
"**/*.md"
],
- "grammarly.hideUnavailablePremiumAlerts": true,
- "grammarly.showExamples": true,
"python.analysis.exclude": [
"build"
],
- "python.formatting.provider": "black",
- "python.linting.flake8Args": [
- "--ignore=E501,W503"
- ],
- "python.linting.flake8Enabled": false,
- "python.linting.mypyCategorySeverity.error": "Warning",
- "python.linting.mypyEnabled": true,
- "python.linting.pylintEnabled": true,
"python.terminal.activateEnvironment": true,
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false,
+ "mypy-type-checker.severity": {
+ "error": "Warning",
+ },
"sortLines.filterBlankLines": true,
"yaml.completion": true,
"yaml.customTags": [
@@ -44,8 +37,10 @@
"evenBetterToml.formatter.alignComments": false,
"[python]": {
"editor.codeActionsOnSave": {
- "source.organizeImports": true,
- "source.fixAll": true
- }
+ "source.organizeImports": "explicit",
+ "source.fixAll": "explicit"
+ },
+ "editor.defaultFormatter": "ms-python.black-formatter",
+ "editor.formatOnSave": true
}
}