We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4c2ae8 commit 764ba91Copy full SHA for 764ba91
2 files changed
.gitignore
@@ -17,7 +17,6 @@ yarn-error.log*
17
18
# Editor directories and files
19
.idea
20
-.vscode
21
*.suo
22
*.ntvs*
23
*.njsproj
.vscode/settings.json
@@ -0,0 +1,25 @@
1
+{
2
+ "prettier.enable": false,
3
+ "editor.formatOnSave": false,
4
+ "editor.codeActionsOnSave": {
5
+ "source.fixAll.eslint": true,
6
+ "source.organizeImports": false
7
+ },
8
+
9
+ // The following is optional.
10
+ // It's better to put under project setting `.vscode/settings.json`
11
+ // to avoid conflicts with working with different eslint configs
12
+ // that does not support all formats.
13
+ "eslint.validate": [
14
+ "javascript",
15
+ "javascriptreact",
16
+ "typescript",
+ "typescriptreact",
+ "vue",
+ "html",
+ "markdown",
+ "json",
+ "jsonc",
+ "yaml"
24
+ ]
25
+}
0 commit comments