12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {
- "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
- },
- "files.trimTrailingWhitespace": true,
- "files.ensureSingleFinalNewline": true,
- "prettier.bracketSpacing": false,
- "prettier.singleQuote": true,
- "prettier.printWidth": 90,
- "prettier.jsxBracketSameLine": true,
- "eslint.options": {
- "configFile": ".eslintrc"
- },
- "[javascript]": {
- "editor.formatOnSave": true
- },
- "[python]": {
- "editor.formatOnSave": true
- },
- "python.linting.pylintEnabled": false,
- "python.linting.flake8Enabled": true,
- "python.formatting.provider": "autopep8",
- // https://github.com/DonJayamanne/pythonVSCode/issues/992
- "python.formatting.yapfArgs": ["--style", "${workspaceRoot}/setup.cfg"],
- "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
- }
|