|
| 1 | +// Place your settings in this file to overwrite default and user settings. |
| 2 | +{ |
| 3 | + "search.exclude": { |
| 4 | + "**/node_modules": true, |
| 5 | + "**/coverage/": true, |
| 6 | + "**/dist/": true, |
| 7 | + "**/yarn.lock": true, |
| 8 | + "**/.rpt2_cache/": true, |
| 9 | + "**/.yalc/**/*": true, |
| 10 | + "**/.cache/**/*": true, |
| 11 | + "**/bazel-bin/**/*": true, |
| 12 | + "**/bazel-out/**/*": true, |
| 13 | + "**/bazel-genfiles/**/*": true, |
| 14 | + "**/bazel-testlogs/**/*": true, |
| 15 | + "**/bazel-tfjs*/**/*": true, |
| 16 | + }, |
| 17 | + "files.trimTrailingWhitespace": true, |
| 18 | + "editor.tabSize": 2, |
| 19 | + "editor.insertSpaces": true, |
| 20 | + "[typescript]": { |
| 21 | + "editor.formatOnSave": true |
| 22 | + }, |
| 23 | + "[javascript]": { |
| 24 | + "editor.formatOnSave": true |
| 25 | + }, |
| 26 | + "[cpp]": { |
| 27 | + "editor.formatOnSave": true |
| 28 | + }, |
| 29 | + "emeraldwalk.runonsave": { |
| 30 | + "commands": [ |
| 31 | + { |
| 32 | + "match": "(BUILD|.*bzl)", |
| 33 | + "cmd": "yarn bazel:format && yarn bazel:lint" |
| 34 | + } |
| 35 | + ] |
| 36 | + }, |
| 37 | + "editor.defaultFormatter": "xaver.clang-format", |
| 38 | + "editor.rulers": [80], |
| 39 | + "clang-format.style": "Google", |
| 40 | + "files.insertFinalNewline": true, |
| 41 | + "editor.detectIndentation": false, |
| 42 | + "editor.wrappingIndent": "none", |
| 43 | + "typescript.tsdk": "node_modules/typescript/lib", |
| 44 | + "clang-format.executable": "${workspaceRoot}/node_modules/.bin/clang-format", |
| 45 | + "files.associations": { |
| 46 | + "memory": "cpp", |
| 47 | + "any": "cpp", |
| 48 | + "array": "cpp", |
| 49 | + "atomic": "cpp", |
| 50 | + "strstream": "cpp", |
| 51 | + "*.tcc": "cpp", |
| 52 | + "bitset": "cpp", |
| 53 | + "cctype": "cpp", |
| 54 | + "chrono": "cpp", |
| 55 | + "cinttypes": "cpp", |
| 56 | + "clocale": "cpp", |
| 57 | + "cmath": "cpp", |
| 58 | + "codecvt": "cpp", |
| 59 | + "complex": "cpp", |
| 60 | + "condition_variable": "cpp", |
| 61 | + "cstdarg": "cpp", |
| 62 | + "cstddef": "cpp", |
| 63 | + "cstdint": "cpp", |
| 64 | + "cstdio": "cpp", |
| 65 | + "cstdlib": "cpp", |
| 66 | + "cstring": "cpp", |
| 67 | + "ctime": "cpp", |
| 68 | + "cwchar": "cpp", |
| 69 | + "cwctype": "cpp", |
| 70 | + "deque": "cpp", |
| 71 | + "list": "cpp", |
| 72 | + "unordered_map": "cpp", |
| 73 | + "unordered_set": "cpp", |
| 74 | + "vector": "cpp", |
| 75 | + "exception": "cpp", |
| 76 | + "algorithm": "cpp", |
| 77 | + "filesystem": "cpp", |
| 78 | + "functional": "cpp", |
| 79 | + "iterator": "cpp", |
| 80 | + "map": "cpp", |
| 81 | + "memory_resource": "cpp", |
| 82 | + "numeric": "cpp", |
| 83 | + "optional": "cpp", |
| 84 | + "random": "cpp", |
| 85 | + "ratio": "cpp", |
| 86 | + "regex": "cpp", |
| 87 | + "set": "cpp", |
| 88 | + "string": "cpp", |
| 89 | + "string_view": "cpp", |
| 90 | + "system_error": "cpp", |
| 91 | + "tuple": "cpp", |
| 92 | + "type_traits": "cpp", |
| 93 | + "utility": "cpp", |
| 94 | + "fstream": "cpp", |
| 95 | + "future": "cpp", |
| 96 | + "initializer_list": "cpp", |
| 97 | + "iomanip": "cpp", |
| 98 | + "iosfwd": "cpp", |
| 99 | + "iostream": "cpp", |
| 100 | + "istream": "cpp", |
| 101 | + "limits": "cpp", |
| 102 | + "mutex": "cpp", |
| 103 | + "new": "cpp", |
| 104 | + "ostream": "cpp", |
| 105 | + "shared_mutex": "cpp", |
| 106 | + "sstream": "cpp", |
| 107 | + "stdexcept": "cpp", |
| 108 | + "streambuf": "cpp", |
| 109 | + "thread": "cpp", |
| 110 | + "cfenv": "cpp", |
| 111 | + "typeinfo": "cpp", |
| 112 | + "valarray": "cpp", |
| 113 | + "variant": "cpp", |
| 114 | + "charconv": "cpp", |
| 115 | + "__bit_reference": "cpp", |
| 116 | + "__config": "cpp", |
| 117 | + "__debug": "cpp", |
| 118 | + "__errc": "cpp", |
| 119 | + "__functional_base": "cpp", |
| 120 | + "__hash_table": "cpp", |
| 121 | + "__locale": "cpp", |
| 122 | + "__mutex_base": "cpp", |
| 123 | + "__node_handle": "cpp", |
| 124 | + "__nullptr": "cpp", |
| 125 | + "__split_buffer": "cpp", |
| 126 | + "__sso_allocator": "cpp", |
| 127 | + "__std_stream": "cpp", |
| 128 | + "__string": "cpp", |
| 129 | + "__threading_support": "cpp", |
| 130 | + "__tree": "cpp", |
| 131 | + "__tuple": "cpp", |
| 132 | + "bit": "cpp", |
| 133 | + "ios": "cpp", |
| 134 | + "locale": "cpp", |
| 135 | + "queue": "cpp", |
| 136 | + "stack": "cpp", |
| 137 | + "*.ipp": "cpp", |
| 138 | + "forward_list": "cpp", |
| 139 | + "typeindex": "cpp", |
| 140 | + "*.inc": "cpp", |
| 141 | + "hash_map": "cpp", |
| 142 | + "__refstring": "cpp" |
| 143 | + }, |
| 144 | + "editor.formatOnSave": true |
| 145 | +} |
0 commit comments