|
1 | 1 | {
|
2 |
| - "editor.defaultFormatter": "esbenp.prettier-vscode", |
3 |
| - "editor.formatOnSave": true, |
4 |
| - "editor.detectIndentation": true, |
5 |
| - "editor.fontFamily": "'Dank Mono', Menlo, Monaco, 'Courier New', monospace", |
6 |
| - "editor.fontLigatures": false, |
7 |
| - "editor.rulers": [80], |
8 |
| - "editor.snippetSuggestions": "top", |
9 |
| - "editor.wordBasedSuggestions": false, |
10 |
| - "editor.suggest.localityBonus": true, |
11 |
| - "editor.acceptSuggestionOnCommitCharacter": false, |
12 |
| - "[javascript]": { |
13 |
| - "editor.defaultFormatter": "esbenp.prettier-vscode", |
14 |
| - "editor.suggestSelection": "recentlyUsed", |
15 |
| - "editor.suggest.showKeywords": false |
16 |
| - }, |
17 |
| - "editor.renderWhitespace": "boundary", |
18 |
| - "files.defaultLanguage": "{activeEditorLanguage}", |
19 |
| - "javascript.validate.enable": false, |
20 |
| - "search.exclude": { |
21 |
| - "**/node_modules": true, |
22 |
| - "**/bower_components": true, |
23 |
| - "**/coverage": true, |
24 |
| - "**/dist": true, |
25 |
| - "**/build": true, |
26 |
| - "**/.build": true, |
27 |
| - "**/.gh-pages": true |
28 |
| - }, |
29 |
| - "editor.codeActionsOnSave": { |
30 |
| - "source.fixAll.eslint": false |
31 |
| - }, |
32 |
| - "eslint.validate": [ |
33 |
| - "javascript", |
34 |
| - "javascriptreact", |
35 |
| - "typescript", |
36 |
| - "typescriptreact" |
37 |
| - ], |
38 |
| - "eslint.options": { |
39 |
| - "env": { |
40 |
| - "browser": true, |
41 |
| - "jest/globals": true, |
42 |
| - "es6": true |
43 |
| - }, |
44 |
| - "parserOptions": { |
45 |
| - "ecmaVersion": 2019, |
46 |
| - "sourceType": "module", |
47 |
| - "ecmaFeatures": { |
48 |
| - "jsx": true |
49 |
| - } |
50 |
| - }, |
51 |
| - "rules": { |
52 |
| - "no-debugger": "off" |
53 |
| - } |
54 |
| - }, |
55 |
| - "workbench.colorTheme": "Night Owl", |
56 |
| - "workbench.iconTheme": "material-icon-theme", |
57 |
| - "breadcrumbs.enabled": true, |
58 |
| - "grunt.autoDetect": "off", |
59 |
| - "gulp.autoDetect": "off", |
60 |
| - "npm.runSilent": true, |
61 |
| - "explorer.confirmDragAndDrop": false, |
62 |
| - "editor.formatOnPaste": false, |
63 |
| - "editor.cursorSmoothCaretAnimation": true, |
64 |
| - "editor.smoothScrolling": true, |
65 |
| - "php.suggest.basic": false |
| 2 | + "editor.defaultFormatter": "esbenp.prettier-vscode", |
| 3 | + "editor.formatOnSave": true, |
| 4 | + "editor.detectIndentation": true, |
| 5 | + "editor.fontFamily": "'Dank Mono', Menlo, Monaco, 'Courier New', monospace", |
| 6 | + "editor.fontLigatures": false, |
| 7 | + "editor.rulers": [80], |
| 8 | + "editor.snippetSuggestions": "top", |
| 9 | + "editor.wordBasedSuggestions": false, |
| 10 | + "editor.suggest.localityBonus": true, |
| 11 | + "editor.acceptSuggestionOnCommitCharacter": false, |
| 12 | + "[javascript]": { |
| 13 | + "editor.defaultFormatter": "esbenp.prettier-vscode", |
| 14 | + "editor.suggestSelection": "recentlyUsed", |
| 15 | + "editor.suggest.showKeywords": false |
| 16 | + }, |
| 17 | + "editor.renderWhitespace": "boundary", |
| 18 | + "files.defaultLanguage": "{activeEditorLanguage}", |
| 19 | + "javascript.validate.enable": false, |
| 20 | + "search.exclude": { |
| 21 | + "**/node_modules": true, |
| 22 | + "**/bower_components": true, |
| 23 | + "**/coverage": true, |
| 24 | + "**/dist": true, |
| 25 | + "**/build": true, |
| 26 | + "**/.build": true, |
| 27 | + "**/.gh-pages": true |
| 28 | + }, |
| 29 | + "editor.codeActionsOnSave": { |
| 30 | + "source.fixAll.eslint": false |
| 31 | + }, |
| 32 | + "eslint.validate": [ |
| 33 | + "javascript", |
| 34 | + "javascriptreact", |
| 35 | + "typescript", |
| 36 | + "typescriptreact" |
| 37 | + ], |
| 38 | + "eslint.options": { |
| 39 | + "env": { |
| 40 | + "browser": true, |
| 41 | + "jest/globals": true, |
| 42 | + "es6": true |
| 43 | + }, |
| 44 | + "parserOptions": { |
| 45 | + "ecmaVersion": 2019, |
| 46 | + "sourceType": "module", |
| 47 | + "ecmaFeatures": { |
| 48 | + "jsx": true |
| 49 | + } |
| 50 | + }, |
| 51 | + "rules": { |
| 52 | + "no-debugger": "off" |
| 53 | + } |
| 54 | + }, |
| 55 | + "workbench.colorTheme": "Night Owl", |
| 56 | + "workbench.iconTheme": "material-icon-theme", |
| 57 | + "breadcrumbs.enabled": true, |
| 58 | + "grunt.autoDetect": "off", |
| 59 | + "gulp.autoDetect": "off", |
| 60 | + "npm.runSilent": true, |
| 61 | + "explorer.confirmDragAndDrop": false, |
| 62 | + "editor.formatOnPaste": false, |
| 63 | + "editor.cursorSmoothCaretAnimation": true, |
| 64 | + "editor.smoothScrolling": true, |
| 65 | + "php.suggest.basic": false |
66 | 66 | }
|
0 commit comments