12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- {
- "files.exclude": {
- "**/*.pyc": true,
- "**/*.min.js": true,
- "**/*.js.map": true,
- "/static/": true,
- "node_modules": true,
- "htmlcov": true,
- "build": true,
- "*.log": true,
- "*.egg-info": true,
- "src/sentry/locale": true,
- "src/sentry/static/sentry/dist/": true
- },
- "search.followSymlinks": false,
- "files.trimTrailingWhitespace": true,
- "files.trimFinalNewlines": true,
- "files.insertFinalNewline": true,
- "eslint.options": {
- "configFile": ".eslintrc.js"
- },
- "files.associations": {
- "*.jsx": "javascriptreact"
- },
- "[javascript]": {
- "editor.formatOnSave": true
- },
- "[javascriptreact]": {
- "editor.formatOnSave": true
- },
- "[less]": {
- "editor.formatOnSave": true
- },
- "[python]": {
- "editor.formatOnSave": true
- },
- "python.linting.pylintEnabled": false,
- "python.linting.flake8Enabled": true,
- "python.formatting.provider": "autopep8",
- "python.formatting.autopep8Args": ["--global-config", "${workspaceRoot}/setup.cfg"],
- // https://github.com/DonJayamanne/pythonVSCode/issues/992
- "python.pythonPath": "${env.WORKON_HOME}/sentry/bin/python",
- // test discovery is sluggish and the UI around running
- // tests is often in your way and misclicked
- "python.unitTest.pyTestEnabled": false,
- "python.unitTest.unittestEnabled": false,
- "python.unitTest.nosetestsEnabled": false,
- "prettier-eslint.prettierPath":
- "${env.WORKON_HOME}/node_modules/prettier/bin/prettier.js",
- "editor.tabSize": 4
- }
|