1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
| { "extensions.autoUpdate": true, "update.enableWindowsBackgroundUpdates": false, "update.mode": "manual",
"remote.SSH.defaultExtensions": [ "alefragnani.bookmarks", "berublan.vscode-log-viewer", "bmewburn.vscode-intelephense-client", "bysabi.prettier-vscode-standard", "eamodio.gitlens", "kokororin.vscode-phpfmt", "mhutchie.git-graph", "ms-ceintl.vscode-language-pack-zh-hant", "mutantdino.resourcemonitor", "neilbrayfield.php-docblocker", "rafamel.subtle-brackets", "small.php-ci", ],
"editor.fontSize": 16, "editor.wordSeparators": "`~!@#%^&*()=+-[{]}\\|;:'\",.<>/?,。", "editor.renderControlCharacters": true, "editor.renderWhitespace": "all", "editor.matchBrackets": false,
"files.maxMemoryForLargeFilesMB": 5120, "files.autoSave": "onFocusChange", "files.eol": "\n", "files.watcherExclude": { "**/bs": true, "**/ckeditor": true, "**/vendor/**": true, "**/outer/**": true, }, "files.exclude": { "**/.git": true, "**/.svn": true, "**/.hg": true, "**/CVS": true, "**/.DS_Store": true, "**/uploads": true, "**/tmp": true, },
"breadcrumbs.enabled": true, "diffEditor.ignoreTrimWhitespace": false, "window.zoomLevel": 0,
"typescript.npm": "C:/Program Files/nodejs/npm.cmd", "typescript.preferences.quoteStyle": "single", "javascript.implicitProjectConfig.checkJs": true, "javascript.preferences.quoteStyle": "single", "javascript.referencesCodeLens.enabled": true, "javascript.format.insertSpaceBeforeFunctionParenthesis": true, "javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": true,
"[php]": { "editor.defaultFormatter": "bmewburn.vscode-intelephense-client" }, "[javascript]": { "editor.defaultFormatter": "bysabi.prettier-vscode-standard" },
"git.confirmSync": false, "gitlens.views.lineHistory.enabled": false, "gitlens.hovers.annotations.over": "annotation", "gitlens.advanced.fileHistoryFollowsRenames": false, "gitlens.advanced.similarityThreshold": 50, "gitlens.codeLens.scopes": [ "document" ], "gitlens.advanced.messages": { "suppressCommitHasNoPreviousCommitWarning": true, "suppressShowKeyBindingsNotice": true }, "gitlens.blame.highlight.locations": [ "gutter", "line", "overview" ],
"subtleBrackets.style": { "color": "#528BFF", "borderWidth": "1px", "borderStyle": "none none solid none" },
"phpfmt.smart_linebreak_after_curly": true, "phpfmt.passes": [ "GeneratePHPDoc", "PHPDocTypesToFunctionTypehint", "PrettyPrintDocBlocks", "ReindentSwitchBlocks", "DocBlockToComment", "EliminateDuplicatedEmptyLines", "PSR2EmptyFunction", "AlignPHPCode", "RTrim", "IndentTernaryConditions", "MergeElseIf", ],
"intelephense.completion.fullyQualifyGlobalConstantsAndFunctions": true, "intelephense.files.maxSize": 5242880, "intelephense.files.exclude": [ "**/.git/**", "**/.svn/**", "**/.hg/**", "**/CVS/**", "**/.DS_Store/**", "**/node_modules/**", "**/bower_components/**", "**/vendor/**/{Test,test,Tests,tests}/**", "**/outer/**", ],
"prettier.singleQuote": true, "prettier.parser": "flow", "prettier.trailingComma": "es5", "prettier.printWidth": 100,
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", "terminal.integrated.env.windows": {"LC_ALL":"en_US.UTF-8"}, "explorer.confirmDelete": false, "terminal.external.windowsExec": "C:\\Program Files\\Git\\git-bash.exe", }
|