rainmoon/languages
0
1{2 // Controls whether the lines in output should wrap.3 "notebook.output.wordWrap": true,4 // Will allow any unconfigured ports to port forward to localhost in devcontainer5 "remote.autoForwardPortsFallback": 0,6 "python.analysis.autoFormatStrings": true,7 "python.analysis.extraPaths": [8 ".",9 "./youtube_chat"10 ],11 "python.envFile": "${workspaceFolder}/.env",12 "[python]": {13 "editor.codeActionsOnSave": {14 "source.fixAll": "explicit",15 "source.organizeImports": "explicit"16 },17 "editor.defaultFormatter": "ms-python.black-formatter",18 "editor.formatOnSave": true,19 "editor.wordWrap": "wordWrapColumn",20 "editor.wordWrapColumn": 120,21 },22 "terminal.integrated.defaultProfile.linux": "bash",23 "python.terminal.activateEnvironment": true,24 "python.terminal.activateEnvInCurrentTerminal": true,25 "python.testing.pytestArgs": [26 "tests/"27 ],28 "python.testing.unittestEnabled": false,29 "python.testing.pytestEnabled": true30}