Created
April 14, 2025 05:24
-
-
Save ManotLuijiu/49733e44dd1e03fa3108b6139b5d558d to your computer and use it in GitHub Desktop.
Settings File for Frappe/ERPNext environment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"files.autoSave": "onFocusChange", | |
"editor.fontFamily": "Consolas, 'MesloLGS Nerd Font', monospace", | |
"terminal.integrated.fontFamily": "'MesloLGS Nerd Font'", | |
"terminal.integrated.fontSize": 13, | |
"editor.defaultFormatter": "ms-python.black-formatter", | |
"[json]": { | |
"editor.quickSuggestions": { | |
"strings": true | |
}, | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"files.associations": { | |
"*.jsx": "javascriptreact", | |
"*.js": "javascriptreact" | |
}, | |
"[javascript]": { | |
"editor.maxTokenizationLineLength": 2500, | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"editor.wordWrap": "on", | |
"python.analysis.extraPaths": ["/home/frappe/moo-bench/apps"], | |
"files.watcherExclude": { | |
"**/.git/objects/**": true, | |
"**/.git/subtree-cache/**": true, | |
"**/node_modules/*/**": true, | |
"**/.bench/**": true, | |
"**/sites/assets/**": true, | |
"**/sites/private/files/**": true, | |
"**/sites/*/public/**": true, | |
"**/sites/*/private/backups/**": true, | |
"**/sites/*/private/files/**": true, | |
"**/__pycache__/**": true, | |
"**/*.pyc": true, | |
"**/*.log": true, | |
"**/logs/**": true, | |
"**/dist/**": true | |
}, | |
"files.exclude": { | |
"**/__pycache__": true, | |
"**/*.pyc": true, | |
"**/.DS_Store": true, | |
"**/.git": false, | |
"**/node_modules": true | |
}, | |
"search.exclude": { | |
"**/node_modules": true, | |
"**/bower_components": true, | |
"**/*.code-search": true, | |
"**/__pycache__": true, | |
"**/*.pyc": true, | |
"**/sites/assets/**": true | |
}, | |
"python.analysis.typeCheckingMode": "basic", | |
"[python]": { | |
"editor.defaultFormatter": "ms-python.black-formatter", | |
"editor.formatOnSave": true, | |
"editor.codeActionsOnSave": { | |
"source.organizeImports": "explicit" | |
} | |
}, | |
"isort.args": ["--profile", "black"], | |
"editor.formatOnSave": true, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"[css]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"javascript.updateImportsOnFileMove.enabled": "always" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment