|
4 | 4 | "eslint.enable": true, |
5 | 5 | "javascript.validate.enable": false, |
6 | 6 | "editor.rulers": [80], |
7 | | - "window.zoomLevel": 0, |
| 7 | + "window.zoomLevel": 1, |
8 | 8 | "files.exclude": { |
9 | | - "**/.git": true, // this is a default value |
10 | | - "**/.DS_Store": true, // this is a default value |
11 | | - |
12 | | - "**/node_modules": true, // this excludes all folders |
13 | | - // named "node_modules" from |
14 | | - // the explore tree |
15 | | - "**/dist": true, |
| 9 | + "**/.DS_Store": true, |
| 10 | + "**/.git": true, |
| 11 | + "**/node_modules": true, |
16 | 12 | "**/old_dist_find_assets": true, |
17 | 13 | "**/tmp": true |
18 | 14 | }, |
|
22 | 18 | "workbench.editor.enablePreview": true, |
23 | 19 | "workbench.editor.enablePreviewFromQuickOpen": false, |
24 | 20 | "workbench.colorTheme": "rainbow", |
25 | | - |
26 | | - // Use *[prettier-eslint](https://github.com/prettier/prettier-eslint)* |
27 | | - // instead of *prettier*. Other settings will only be fallbacks in case they |
28 | | - // could not be inferred from eslint rules. |
29 | | - "prettier.eslintIntegration": false, |
30 | | - |
31 | | - // Fit code within this line limit |
32 | | - "prettier.printWidth": 80, |
33 | | - |
34 | | - // Number of spaces it should use per tab |
35 | | - "prettier.tabWidth": 4, |
36 | | - |
37 | | - // If true, will use single instead of double quotes |
38 | | - "prettier.singleQuote": true, |
39 | | - |
40 | | - // Controls the printing of trailing commas wherever possible. Valid |
41 | | - // options: |
42 | | - // - "none" - No trailing commas |
43 | | - // - "es5" - Trailing commas where valid in ES5 (objects, arrays, etc) |
44 | | - // - "all" - Trailing commas wherever possible (function arguments) |
45 | | - "prettier.trailingComma": "all", |
46 | | - |
47 | | - // Controls the printing of spaces inside object literals |
48 | | - "prettier.bracketSpacing": true, |
49 | | - |
50 | | - // If true, puts the `>` of a multi-line jsx element at the end of the last |
51 | | - // line instead of being alone on the next line |
52 | | - "prettier.jsxBracketSameLine": false, |
53 | | - |
54 | | - // Which parser to use. Valid options are 'flow' and 'babylon' |
55 | | - "prettier.parser": "flow", |
56 | | - |
57 | | - // Whether to add a semicolon at the end of every line (semi: true), or only |
58 | | - // at the beginning of lines that may introduce ASI failures (semi: false) |
59 | | - "prettier.semi": true, |
60 | | - |
61 | | - // If true, indent lines with tabs |
62 | | - "prettier.useTabs": false, |
63 | | - |
64 | 21 | "indentRainbow.error_color": "", |
65 | 22 |
|
66 | 23 | "editor.renderWhitespace": "none", |
|
76 | 33 | "window.title": "${activeEditorMedium}${separator}${rootName}", |
77 | 34 | "javascript.updateImportsOnFileMove.enabled": "always", |
78 | 35 | "typescript.updateImportsOnFileMove.enabled": "always", |
79 | | - "workbench.panel.location": "bottom" |
| 36 | + "workbench.panel.location": "bottom", |
| 37 | + "breadcrumbs.enabled": true, |
| 38 | + "editor.formatOnSave": true, |
| 39 | + "editor.tabSize": 2 |
80 | 40 | } |
0 commit comments