فهرست منبع

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 6 سال پیش
والد
کامیت
4fb60f64ce
2فایلهای تغییر یافته به همراه5 افزوده شده و 2 حذف شده
  1. 1 2
      .gitignore
  2. 4 0
      .vscode/settings.json

+ 1 - 2
.gitignore

@@ -3,7 +3,6 @@
 dist
 *.log
 node_modules
-.vscode
 flow-typed/npm/*
 !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,
+}