nio-llm/.vscode/settings.json

39 lines
941 B
JSON
Raw Normal View History

2023-05-18 17:05:06 +00:00
{
// nice editor settings
2023-05-18 17:05:06 +00:00
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.rulers": [
120
],
// editorconfig redundancy
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
// hide unimportant files/folders
2023-05-18 17:05:06 +00:00
"files.exclude": {
// defaults
2023-05-18 17:05:06 +00:00
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
// annoying
2023-05-18 17:05:06 +00:00
"**/__pycache__": true,
"**/.mypy_cache": true,
2023-05-20 19:24:47 +00:00
"**/.ruff_cache": true,
"**/*.tmp": true,
},
// python settings
"python.analysis.typeCheckingMode": "basic", // get ready to be annoyed
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.codeActionsOnSave": {
"source.organizeImports.ruff": true,
"source.fixAll": true,
}
},
"terminal.integrated.env.linux": {
"PYTHONPATH": "${workspaceFolder}/src/",
2023-05-18 17:05:06 +00:00
},
}