Quellcode durchsuchen

Add Flow VSCode settings

These VSCode settings allow using the node modules version of Flow and
disables VSCode's Typescript validation (interferes with Flow's
validation).
Sergiu Miclea vor 6 Jahren
Ursprung
Commit
4fb60f64ce
2 geänderte Dateien mit 5 neuen und 2 gelöschten Zeilen
  1. 1 2
      .gitignore
  2. 4 0
      .vscode/settings.json

+ 1 - 2
.gitignore

@@ -3,7 +3,6 @@
 dist
 dist
 *.log
 *.log
 node_modules
 node_modules
-.vscode
 flow-typed/npm/*
 flow-typed/npm/*
 !flow-typed/npm/module_vx.x.x.js
 !flow-typed/npm/module_vx.x.x.js
-private/cypress/config.js
+private/cypress/config.js

+ 4 - 0
.vscode/settings.json

@@ -0,0 +1,4 @@
+{
+  "flow.useNPMPackagedFlow": true,
+  "javascript.validate.enable": false,
+}