-
Notifications
You must be signed in to change notification settings - Fork 1
Patch-2 #55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Patch-2 #55
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,8 @@ | ||
| { | ||
| "typescript.tsserver.experimental.enableProjectDiagnostics": true, | ||
| "editor.tabSize": 2, | ||
| "editor.tabSize": 90, | ||
| "editor.rulers": [80], | ||
| "editor.detectIndentation": false, | ||
| "editor.detectIndentation": true, | ||
| "editor.insertSpaces": true, | ||
| "[typescript]": { | ||
| "editor.defaultFormatter": "esbenp.prettier-vscode" | ||
|
|
@@ -16,5 +16,54 @@ | |
| "[markdown]": { | ||
| "editor.defaultFormatter": "esbenp.prettier-vscode" | ||
| }, | ||
| "vitest.disableWorkspaceWarning": true | ||
| "vitest.disableWorkspaceWarning": true, | ||
| "gitlens.currentLine.enabled": true, | ||
| "editor.fontSize": 19, | ||
| "files.autoSave": "afterDelay", | ||
| "editor.defaultFormatter": "ms-vscode.anycode", | ||
| "editor.wordWrap": "bounded", | ||
| "workbench.colorTheme": "GitHub Dark Colorblind (Beta)", | ||
| "editor.mouseWheelZoom": true, | ||
| "editor.formatOnPaste": true, | ||
| "editor.accessibilitySupport": "on", | ||
| "editor.aiStats.enabled": true, | ||
| "editor.allowVariableFontsInAccessibilityMode": true, | ||
| "editor.autoClosingBrackets": "always", | ||
| "editor.autoClosingComments": "always", | ||
| "editor.autoClosingOvertype": "always", | ||
| "editor.autoIndent": "full", | ||
| "editor.autoIndentOnPaste": true, | ||
| "editor.autoSurround": "languageDefined", | ||
| "editor.codeActions.triggerOnFocusChange": true, | ||
| "editor.bracketPairColorization.independentColorPoolPerBracketType": true, | ||
| "editor.codeLensFontFamily": "Sauber Script, Monaco, Spot Mono, Widlings, Phonesate", | ||
| "editor.codeLensFontSize": 19, | ||
| "editor.columnSelection": true, | ||
| "editor.defaultFoldingRangeProvider": "vscode.extension-editing", | ||
| "editor.definitionLinkOpensInPeek": true, | ||
| "editor.experimental.asyncTokenizationLogging": true, | ||
| "editor.experimental.asyncTokenizationVerification": true, | ||
| "editor.experimental.preferTreeSitter.css": true, | ||
| "editor.experimental.preferTreeSitter.ini": true, | ||
| "editor.experimental.preferTreeSitter.regex": true, | ||
| "editor.experimental.preferTreeSitter.typescript": true, | ||
| "editor.experimental.treeSitterTelemetry": true, | ||
| "editor.experimentalGpuAcceleration": "on", | ||
| "editor.experimentalWhitespaceRendering": "font", | ||
| "editor.fastScrollSensitivity": 8, | ||
| "editor.foldingImportsByDefault": true, | ||
| "editor.foldingStrategy": "indentation", | ||
| "editor.gotoLocation.alternativeDeclarationCommand": "editor.action.revealDefinitionAside", | ||
| "editor.gotoLocation.alternativeDefinitionCommand": "editor.action.referenceSearch.trigger", | ||
| "editor.gotoLocation.alternativeImplementationCommand": "editor.action.referenceSearch.trigger", | ||
| "editor.gotoLocation.alternativeReferenceCommand": "editor.action.peekImplementation", | ||
| "editor.guides.bracketPairs": "active", | ||
| "editor.hideCursorInOverviewRuler": true, | ||
| "editor.hover.enabled": "onKeyboardModifier", | ||
| "editor.inertialScroll": true, | ||
| "editor.inlayHints.fontFamily": "Sauber Script, Wigdings, Phonesate, Spot Mono, Gothic, Monaco, LET, OS OCIT 26, SchoolBook, Maker Felt, Lucinari", | ||
| "editor.inlayHints.fontSize": 25, | ||
| "editor.inlayHints.maximumLength": 0, | ||
| "editor.inlayHints.padding": true, | ||
| "editor.inlineCompletionsAccessibilityVerbose": true | ||
|
Comment on lines
+19
to
+68
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. A large number of personal VS Code settings have been added to this shared project configuration file. Settings related to themes, fonts, and editor behavior are individual preferences and should be configured in your user-level Furthermore, the added JSON is syntactically incorrect due to missing commas and incorrect indentation (e.g., starting on line 25), which will prevent VS Code from parsing the file. Please remove these personal settings from the project's configuration. "vitest.disableWorkspaceWarning": true |
||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
editor.tabSizehas been changed to90, which is an unusually large value that will make code difficult to read. This should be reverted to a more conventional value like2. Additionally,editor.detectIndentationhas been set totrue. To ensure consistent formatting across the project, it's better to explicitly define the indentation settings and let the project's formatter (Prettier) enforce them, as was the case with the previous setting offalse.