You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2021/05/15 21:26:06 UTC

[arrow] branch master updated: MINOR: [JS] add VSCode settings (#10337)

This is an automated email from the ASF dual-hosted git repository.

kou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 659335d  MINOR: [JS] add VSCode settings (#10337)
659335d is described below

commit 659335dfa26c3b24e0b0754492d174a4bf48c1fa
Author: Dominik Moritz <do...@gmail.com>
AuthorDate: Sat May 15 14:24:59 2021 -0700

    MINOR: [JS] add VSCode settings (#10337)
---
 js/.gitignore            | 12 +++---------
 js/.vscode/settings.json |  7 +++++++
 2 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/js/.gitignore b/js/.gitignore
index 9a11ab8..799f789 100644
--- a/js/.gitignore
+++ b/js/.gitignore
@@ -23,9 +23,6 @@ npm-debug.log*
 yarn-debug.log*
 yarn-error.log*
 
-.vscode/**
-!.vscode/launch.json
-
 # Runtime data
 pids
 *.pid
@@ -41,12 +38,6 @@ coverage
 # nyc test coverage
 .nyc_output
 
-# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
-.grunt
-
-# Bower dependency directory (https://bower.io/)
-bower_components
-
 # node-waf configuration
 .lock-wscript
 
@@ -89,3 +80,6 @@ test/data/**/*.arrow
 
 # jest snapshots (too big)
 test/__snapshots__/
+
+# VSCode
+!.vscode
diff --git a/js/.vscode/settings.json b/js/.vscode/settings.json
new file mode 100644
index 0000000..379ddf1
--- /dev/null
+++ b/js/.vscode/settings.json
@@ -0,0 +1,7 @@
+{
+  "typescript.tsdk": "node_modules/typescript/lib",
+  "editor.trimAutoWhitespace": true,
+  "editor.codeActionsOnSave": {
+    "source.fixAll.eslint": true
+  }
+}