-
-
Notifications
You must be signed in to change notification settings - Fork 325
[code-infra] Polish VS Code DX #1238
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
Changes from 3 commits
c183e72
6f3c1f4
f2acb97
2ab889b
e222347
2837779
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,10 +1,20 @@ | ||
| { | ||
| "recommendations": [ | ||
| "davidanson.vscode-markdownlint", | ||
| "dbaeumer.vscode-eslint", | ||
| "editorconfig.editorconfig", | ||
| "esbenp.prettier-vscode", | ||
| "unifiedjs.vscode-mdx", | ||
| "yoavbls.pretty-ts-errors" | ||
| // Formating | ||
| "esbenp.prettier-vscode", // Prettier | ||
| "editorconfig.editorconfig", // EditorConfig | ||
|
|
||
| // Highlighting | ||
| "bradlc.vscode-tailwindcss", // Tailwind CSS | ||
| "unifiedjs.vscode-mdx", // MDX | ||
| "shardulm94.trailing-spaces", // Trailing spaces | ||
| "styled-components.vscode-styled-components", // styled() | ||
|
|
||
| // Lint | ||
| "dbaeumer.vscode-eslint", // ESLint | ||
| "yoavbls.pretty-ts-errors", // TypeScript | ||
| "stylelint.vscode-stylelint", // Stylelint | ||
| "davidanson.vscode-markdownlint", // markdownlint | ||
| "chrischinchilla.vale-vscode" // Vale | ||
|
||
| ] | ||
| } | ||
|
Member
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. 👍 |
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| { | ||
| "editor.defaultFormatter": "esbenp.prettier-vscode", | ||
| "files.trimTrailingWhitespace": true, | ||
|
|
||
| // Root workspace only | ||
| "typescript.tsdk": "node_modules/typescript/lib", | ||
oliviertassinari marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| "typescript.surveys.enabled": false, | ||
|
||
| "grammarly.selectors": [ | ||
| { | ||
| "language": "markdown", | ||
| "scheme": "file" | ||
| } | ||
| ] | ||
| } | ||
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.
prettierdoes it