|
| 1 | +{ |
| 2 | + "eslint.validate": [ |
| 3 | + "html", |
| 4 | + "javascript", |
| 5 | + "typescript", |
| 6 | + "typescriptreact", |
| 7 | + "markdown", |
| 8 | + "json" |
| 9 | + ], |
| 10 | + "editor.formatOnType": true, |
| 11 | + "editor.formatOnSave": true, |
| 12 | + "editor.formatOnPaste": true, |
| 13 | + "editor.codeActionsOnSave": { |
| 14 | + "source.fixAll.eslint": true |
| 15 | + }, |
| 16 | + "prettier.singleQuote": true, |
| 17 | + "eslint.workingDirectories": [ |
| 18 | + { |
| 19 | + "directory": "./", |
| 20 | + "changeProcessCWD": true |
| 21 | + }, |
| 22 | + { |
| 23 | + "directory": "./app", |
| 24 | + "changeProcessCWD": true |
| 25 | + }, |
| 26 | + { |
| 27 | + "directory": "./website", |
| 28 | + "changeProcessCWD": true |
| 29 | + } |
| 30 | + ], |
| 31 | + "markdown.extension.print.onFileSave": false, |
| 32 | + "markdown.extension.toc.orderedList": true, |
| 33 | + "javascript.validate.enable": true, |
| 34 | + "standard.enable": false, |
| 35 | + "markdown.extension.toc.levels": "2..6", |
| 36 | + "markdown.extension.toc.githubCompatibility": true, |
| 37 | + "editor.tabSize": 2, |
| 38 | + "cSpell.words": [ |
| 39 | + "Sourcegraph" |
| 40 | + ], |
| 41 | + "files.watcherExclude": { |
| 42 | + "**/target": true |
| 43 | + }, |
| 44 | + "python.testing.unittestEnabled": false, |
| 45 | + "python.testing.unittestArgs": [ |
| 46 | + "-v", |
| 47 | + "-s", |
| 48 | + ".", |
| 49 | + "-p", |
| 50 | + "*test.py" |
| 51 | + ], |
| 52 | + "python.testing.promptToConfigure": false, |
| 53 | + "python.testing.pytestEnabled": false, |
| 54 | + "python.testing.nosetestsEnabled": false, |
| 55 | + "python.linting.pylintEnabled": true, |
| 56 | + "java.test.config": [ |
| 57 | + { |
| 58 | + "name": "myConfig", |
| 59 | + "workingDirectory": "${workspaceFolder}" |
| 60 | + } |
| 61 | + ], |
| 62 | + "java.test.defaultConfig": "myConfig", |
| 63 | + "markdownShortcuts.bullets.marker": "-", |
| 64 | + "java.format.settings.url": "https://raw.githubusercontent.com/google/styleguide/gh-pages/eclipse-java-google-style.xml", |
| 65 | + "java.format.settings.profile": "GoogleStyle", |
| 66 | + "java.checkstyle.configuration": "", |
| 67 | + "java.debug.settings.console": "internalConsole", |
| 68 | + "markdown.extension.list.indentationSize": "inherit", |
| 69 | + "python.linting.enabled": true, |
| 70 | + "c3.rootPackage": "" |
| 71 | +} |
0 commit comments