12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- {
- "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
- },
- "[typescript]": {
- "editor.formatOnSave": true
- },
- "[typescriptreact]": {
- "editor.formatOnSave": true
- },
- "[javascriptreact]": {
- "editor.formatOnSave": true
- },
- "[less]": {
- "editor.formatOnSave": true
- },
- "[python]": {
- "editor.formatOnSave": true
- },
- "[html]": {
- "editor.formatOnSave": false
- },
- "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": "${workspaceFolder}/.venv/bin/python",
- // test discovery is sluggish and the UI around running
- // tests is often in your way and misclicked
- "python.testing.pyTestEnabled": false,
- "python.testing.unittestEnabled": false,
- "python.testing.nosetestsEnabled": false,
- "editor.tabSize": 4,
- "restructuredtext.confPath": "",
- "python.linting.enabled": true,
- "python.linting.flake8Path": "${workspaceFolder}/.venv/bin/flake8",
- "python.linting.pep8Path": "${workspaceFolder}/.venv/bin/pep8",
- "python.testing.pyTestPath": "${workspaceFolder}/.venv/bin/pytest"
- }
|