Skip to content

Commit

Permalink
fix terms
Browse files Browse the repository at this point in the history
  • Loading branch information
kitta65 committed Apr 6, 2024
1 parent 6c09aed commit 60db87e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2018 dr666m1 <skndr666m1@gmail.com>
Copyright (c) 2018 kitta65 <skndr666m1@gmail.com>

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
Expand Down
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
# bq2cst
Parse standard SQL, which is a dialect of [BigQuery](https://cloud.google.com/bigquery), into a concrete syntax tree.

Parse GoogleSQL, which is a dialect of [BigQuery](https://cloud.google.com/bigquery), into a concrete syntax tree.

> [!WARNING]
> This parser is designed to be used via [prettier-plugin-bq](https://github.com/dr666m1/prettier-plugin-bq).
> This parser is designed to be used via [prettier-plugin-bq](https://github.com/kitta65/prettier-plugin-bq).
## Features
- forcused on standard SQL (in other words, other SQL dialects are out of scope)

- forcused on GoogleSQL (in other words, other SQL dialects are out of scope)
- developed in Rust, using [wasm-pack](https://github.com/rustwasm/wasm-pack)

## Install

```shell
npm install bq2cst
```

## Usage

```javascript
const parser = require("bq2cst");
parser.parse("SELECT 1;")
Expand Down

0 comments on commit 60db87e

Please sign in to comment.