SkyeYoung commented on code in PR #1113:
URL: https://github.com/apache/apisix-website/pull/1113#discussion_r889679384
##########
website/docs/ide-config.md:
##########
@@ -0,0 +1,62 @@
+<h2 id="vscode">VS Code</h2>
+
+> VS Code Extensions
+
+- ESLint
+ - id: "dbaeumer.vscode-eslint"
+ - recommend reason: "Integrates ESLint JavaScript into VS Code."
+- Stylelint
+ - id: "stylelint.vscode-stylelint"
+ - recommend reason: "Official Stylelint extension for Visual Studio Code"
+- GitLens
+ - id: "eamodio.gitlens"
+ - recommend reason: "It helps you to visualize code authorship at a glance
via Git blame annotations and CodeLens"
+- markdownlint
+ - id: "DavidAnson.vscode-markdownlint"
+ - recommend reason: "Markdown linting and style checking for Visual Studio
Code"
+
+> VS Code Settings
+
+```json5
+{
+ // ===
+ // Spacing
+ // ===
+
+ "editor.insertSpaces": true,
+ "editor.tabSize": 2,
+ "editor.trimAutoWhitespace": true,
+ "files.trimTrailingWhitespace": true,
+ "files.eol": "\n",
+ "files.insertFinalNewline": true,
+ "files.trimFinalNewlines": true,
+
+ // ===
+ // Files
+ // ===
+
+ "files.exclude": {
+ "**/dist": true
Review Comment:
Does this rule cover all the files that need to be excluded?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]