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/04/14 06:44:19 UTC

[arrow] branch master updated (7cec72d -> c0445d6)

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

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


    from 7cec72d  ARROW-12309: [JS] Make es2015 bundles the default
     add c0445d6  ARROW-12269: [JS] Move to eslint

No new revisions were added by this update.

Summary of changes:
 dev/release/rat_exclude_files.txt                  |   1 +
 js/.eslintignore                                   |   1 +
 js/.eslintrc.js                                    |  96 +++++
 js/DEVELOP.md                                      |   2 -
 js/gulp/closure-task.js                            |   4 +-
 js/jest.coverage.config.js                         |  14 +-
 js/package.json                                    |  13 +-
 js/perf/index.js                                   |  10 +-
 js/perf/table_config.js                            |   8 +-
 js/src/bin/arrow2csv.ts                            |  10 +-
 js/src/builder.ts                                  |  21 +-
 js/src/builder/buffer.ts                           |   6 +-
 js/src/builder/map.ts                              |   2 +-
 js/src/builder/run.ts                              |   3 +-
 js/src/builder/union.ts                            |   2 -
 js/src/compute/dataframe.ts                        |   6 +-
 js/src/compute/predicate.ts                        |   6 +-
 js/src/data.ts                                     |  12 +-
 cpp/src/arrow/json/api.h => js/src/fb/.eslintrc.js |  10 +-
 js/src/fb/Schema.ts                                |   2 -
 js/src/io/adapters.ts                              |  10 +-
 js/src/io/file.ts                                  |   7 +-
 js/src/io/interfaces.ts                            |  13 +-
 js/src/io/node/reader.ts                           |   4 +-
 js/src/io/node/writer.ts                           |   2 +-
 js/src/io/stream.ts                                |  10 +-
 js/src/io/whatwg/builder.ts                        |   4 +-
 js/src/io/whatwg/writer.ts                         |   2 +-
 js/src/ipc/metadata/file.ts                        |   8 +-
 js/src/ipc/metadata/json.ts                        |   3 +-
 js/src/ipc/metadata/message.ts                     |   7 +-
 js/src/ipc/reader.ts                               |  14 +-
 js/src/ipc/writer.ts                               |   9 +-
 js/src/recordbatch.ts                              |   2 +-
 js/src/schema.ts                                   |   4 +-
 js/src/table.ts                                    |   4 +-
 js/src/type.ts                                     |  81 ++--
 js/src/util/bn.ts                                  |   4 +-
 js/src/util/compat.ts                              |   1 +
 js/src/util/recordbatch.ts                         |   2 +-
 js/src/vector/chunked.ts                           |   2 +-
 js/src/vector/index.ts                             |   4 +-
 js/src/vector/int.ts                               |   6 +-
 js/src/vector/map.ts                               |   8 +-
 js/src/vector/row.ts                               |   6 +-
 js/src/vector/struct.ts                            |   3 +-
 js/src/visitor.ts                                  |  12 +-
 js/src/visitor/jsontypeassembler.ts                |   4 +-
 js/src/visitor/jsonvectorassembler.ts              |  16 +-
 js/src/visitor/set.ts                              |   3 +-
 js/src/visitor/vectorloader.ts                     |   4 +-
 js/{jest.coverage.config.js => test/.eslintrc.js}  |  23 +-
 js/test/Arrow.ts                                   |   2 -
 js/test/generate-test-data.ts                      |  11 +-
 js/test/inference/column.ts                        |   2 +
 js/test/inference/nested.ts                        |   4 +-
 js/test/jest-extensions.ts                         |   4 +-
 js/test/unit/builders/date-tests.ts                |   4 +-
 js/test/unit/builders/utils.ts                     |   9 +-
 js/test/unit/generated-data-validators.ts          |   6 +-
 js/test/unit/ipc/helpers.ts                        |   3 -
 js/test/unit/ipc/reader/from-inference-tests.ts    |   2 +-
 js/test/unit/ipc/reader/json-reader-tests.ts       |   1 -
 js/test/unit/ipc/reader/streams-dom-tests.ts       |   2 -
 js/test/unit/ipc/reader/streams-node-tests.ts      |   3 -
 js/test/unit/ipc/writer/json-writer-tests.ts       |   1 -
 js/test/unit/ipc/writer/stream-writer-tests.ts     |   2 +-
 js/test/unit/ipc/writer/streams-dom-tests.ts       |   5 +-
 js/test/unit/ipc/writer/streams-node-tests.ts      |   5 +-
 js/test/unit/recordbatch/record-batch-tests.ts     |  24 +-
 js/test/unit/table-tests.ts                        |  50 +--
 js/test/unit/table/assign-tests.ts                 |   4 +
 js/test/unit/table/serialize-tests.ts              |  20 +-
 js/test/unit/utils.ts                              |   2 +-
 js/test/unit/vector/numeric-vector-tests.ts        |   2 +
 js/test/unit/visitor-tests.ts                      |   4 +-
 js/tsconfig.json                                   |   3 +-
 js/tslint.json                                     |  39 --
 js/yarn.lock                                       | 467 ++++++++++++++++++---
 79 files changed, 784 insertions(+), 408 deletions(-)
 create mode 100644 js/.eslintignore
 create mode 100644 js/.eslintrc.js
 copy cpp/src/arrow/json/api.h => js/src/fb/.eslintrc.js (83%)
 copy js/{jest.coverage.config.js => test/.eslintrc.js} (67%)
 delete mode 100644 js/tslint.json