MQL5-Google-Onedrive/.vscode/settings.json
copilot-swe-agent[bot] 47a92cbdae feat: add unified workspace and documentation structure
- Add VS Code workspace configuration with organized folders
- Add VS Code settings and recommended extensions
- Create CONTRIBUTING.md with comprehensive coding standards
- Create REPOSITORY_LINKS.md as central manifest
- Create TIMELINE.md for project history tracking
- Update .gitignore to keep VS Code settings

Co-authored-by: Mouy-leng <199350297+Mouy-leng@users.noreply.github.com>
2026-02-14 17:38:37 +00:00

51 lines
1.4 KiB
JSON

{
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2,
"editor.insertSpaces": true,
"files.eol": "\n",
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.exclude": {
"**/.git": true,
"**/__pycache__": true,
"**/*.pyc": true,
"**/node_modules": true,
"**/dist": true,
"**/logs/*.log": true
},
"search.exclude": {
"**/node_modules": true,
"**/dist": true,
"**/*.log": true
},
"python.defaultInterpreterPath": "/usr/local/bin/python",
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"python.formatting.provider": "black",
"python.analysis.typeCheckingMode": "basic",
"python.analysis.autoImportCompletions": true,
"[python]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
},
"[markdown]": {
"editor.formatOnSave": true,
"editor.wordWrap": "on",
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[yaml]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"git.autofetch": true,
"git.confirmSync": false,
"git.enableSmartCommit": true
}