|
| 1 | +{ |
| 2 | + "git.ignoreLimitWarning": true, |
| 3 | + "editor.rulers": [ |
| 4 | + 79 |
| 5 | + ], |
| 6 | + "editor.formatOnSave": true, |
| 7 | + "python.formatting.provider": "black", |
| 8 | + "python.formatting.blackArgs": [ |
| 9 | + "--line-length", |
| 10 | + "79" |
| 11 | + ], |
| 12 | + "files.exclude": { |
| 13 | + "**/__pycache__": true, |
| 14 | + "**/.ipynb_checkpoints": true, |
| 15 | + "**/.pytest_cache": true, |
| 16 | + "**/chroma.egg-info": true |
| 17 | + }, |
| 18 | + "python.analysis.typeCheckingMode": "basic", |
| 19 | + "python.linting.flake8Enabled": true, |
| 20 | + "python.linting.enabled": true, |
| 21 | + "python.linting.flake8Args": [ |
| 22 | + "--extend-ignore=E203", |
| 23 | + "--extend-ignore=E501", |
| 24 | + "--extend-ignore=E503", |
| 25 | + "--max-line-length=88" |
| 26 | + ], |
| 27 | + "python.testing.pytestArgs": [ |
| 28 | + "." |
| 29 | + ], |
| 30 | + "python.testing.unittestEnabled": false, |
| 31 | + "python.testing.pytestEnabled": true, |
| 32 | + "editor.formatOnPaste": true, |
| 33 | + "python.linting.mypyEnabled": true, |
| 34 | + "python.linting.mypyCategorySeverity.note": "Error", |
| 35 | + "python.linting.mypyArgs": [ |
| 36 | + "--follow-imports=silent", |
| 37 | + "--ignore-missing-imports", |
| 38 | + "--show-column-numbers", |
| 39 | + "--no-pretty", |
| 40 | + "--strict", |
| 41 | + "--disable-error-code=type-abstract" |
| 42 | + ], |
| 43 | + "protoc": { |
| 44 | + "options": [ |
| 45 | + "--proto_path=idl/", |
| 46 | + ] |
| 47 | + }, |
| 48 | + "rust-analyzer.cargo.buildScripts.enable": true, |
| 49 | + "files.associations": { |
| 50 | + "fstream": "cpp", |
| 51 | + "iosfwd": "cpp", |
| 52 | + "__hash_table": "cpp", |
| 53 | + "__locale": "cpp", |
| 54 | + "atomic": "cpp", |
| 55 | + "deque": "cpp", |
| 56 | + "filesystem": "cpp", |
| 57 | + "future": "cpp", |
| 58 | + "locale": "cpp", |
| 59 | + "random": "cpp", |
| 60 | + "regex": "cpp", |
| 61 | + "string": "cpp", |
| 62 | + "tuple": "cpp", |
| 63 | + "type_traits": "cpp", |
| 64 | + "unordered_map": "cpp", |
| 65 | + "valarray": "cpp", |
| 66 | + "variant": "cpp", |
| 67 | + "vector": "cpp", |
| 68 | + "__string": "cpp", |
| 69 | + "istream": "cpp", |
| 70 | + "memory": "cpp", |
| 71 | + "optional": "cpp", |
| 72 | + "string_view": "cpp", |
| 73 | + "__bit_reference": "cpp", |
| 74 | + "__bits": "cpp", |
| 75 | + "__config": "cpp", |
| 76 | + "__debug": "cpp", |
| 77 | + "__errc": "cpp", |
| 78 | + "__mutex_base": "cpp", |
| 79 | + "__node_handle": "cpp", |
| 80 | + "__nullptr": "cpp", |
| 81 | + "__split_buffer": "cpp", |
| 82 | + "__threading_support": "cpp", |
| 83 | + "__tree": "cpp", |
| 84 | + "__tuple": "cpp", |
| 85 | + "array": "cpp", |
| 86 | + "bit": "cpp", |
| 87 | + "bitset": "cpp", |
| 88 | + "cctype": "cpp", |
| 89 | + "charconv": "cpp", |
| 90 | + "chrono": "cpp", |
| 91 | + "cinttypes": "cpp", |
| 92 | + "clocale": "cpp", |
| 93 | + "cmath": "cpp", |
| 94 | + "compare": "cpp", |
| 95 | + "complex": "cpp", |
| 96 | + "concepts": "cpp", |
| 97 | + "condition_variable": "cpp", |
| 98 | + "csignal": "cpp", |
| 99 | + "cstdarg": "cpp", |
| 100 | + "cstddef": "cpp", |
| 101 | + "cstdint": "cpp", |
| 102 | + "cstdio": "cpp", |
| 103 | + "cstdlib": "cpp", |
| 104 | + "cstring": "cpp", |
| 105 | + "ctime": "cpp", |
| 106 | + "cwchar": "cpp", |
| 107 | + "cwctype": "cpp", |
| 108 | + "exception": "cpp", |
| 109 | + "format": "cpp", |
| 110 | + "forward_list": "cpp", |
| 111 | + "initializer_list": "cpp", |
| 112 | + "iomanip": "cpp", |
| 113 | + "ios": "cpp", |
| 114 | + "iostream": "cpp", |
| 115 | + "limits": "cpp", |
| 116 | + "list": "cpp", |
| 117 | + "map": "cpp", |
| 118 | + "mutex": "cpp", |
| 119 | + "new": "cpp", |
| 120 | + "numeric": "cpp", |
| 121 | + "ostream": "cpp", |
| 122 | + "queue": "cpp", |
| 123 | + "ratio": "cpp", |
| 124 | + "set": "cpp", |
| 125 | + "sstream": "cpp", |
| 126 | + "stack": "cpp", |
| 127 | + "stdexcept": "cpp", |
| 128 | + "streambuf": "cpp", |
| 129 | + "system_error": "cpp", |
| 130 | + "typeindex": "cpp", |
| 131 | + "typeinfo": "cpp", |
| 132 | + "unordered_set": "cpp", |
| 133 | + "algorithm": "cpp" |
| 134 | + }, |
| 135 | +} |
0 commit comments