Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@
/lib
/dist
/coverage
/vscode
webpack.*.js
/src/parser/grammar.ts
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": ["test/**", "**/*.test.js", "**/*.test.ts", "vscode/src/test/**"],
"devDependencies": ["test/**", "**/*.test.js", "**/*.test.ts"],
"packageDir": ["./"]
}
],
Expand Down
8 changes: 0 additions & 8 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,6 @@ For those who have admin access on the repo, the new release publish flow is as
- `npm run release` (bumps version, git tag, git release, npm release) (does not work with `yarn`).
- `git subtree push --prefix static origin gh-pages` (pushes demo page to GH pages)

To publish the VSCode Extension:

- ensure that the CHANGELOG and `package.json` are up to date before bumping version
- ensure that the version does not conflict with a previous extension version
- run the following commands in the `vscode/` dir (requires auth with Microsoft Dev account + access to VSCode team)
- `yarn vsce:package`
- `yarn vsce:publish` (can also be done via browser)

## Contributors

- Adrien Pyke <adpyke@gmail.com>
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<a href='https://github.com/sql-formatter-org/sql-formatter'><img src="static/prettier-sql-clean.svg" width="128"/></a>

# SQL Formatter [![NPM version](https://img.shields.io/npm/v/sql-formatter.svg)](https://npmjs.com/package/sql-formatter) ![Build status](https://img.shields.io/github/workflow/status/sql-formatter-org/sql-formatter/coveralls/master?label=Build&logo=Github) ![Coverage status](https://img.shields.io/coveralls/github/sql-formatter-org/sql-formatter?branch=master&label=Coverage&logo=coveralls&style=plastic) [![VSCode](https://img.shields.io/visual-studio-marketplace/v/inferrinizzard.prettier-sql-vscode?label=vscode)](https://marketplace.visualstudio.com/items?itemName=inferrinizzard.prettier-sql-vscode)
# SQL Formatter [![NPM version](https://img.shields.io/npm/v/sql-formatter.svg)](https://npmjs.com/package/sql-formatter) ![Build status](https://img.shields.io/github/workflow/status/sql-formatter-org/sql-formatter/coveralls/master?label=Build&logo=Github) ![Coverage status](https://img.shields.io/coveralls/github/sql-formatter-org/sql-formatter?branch=master&label=Coverage&logo=coveralls&style=plastic)

**SQL Formatter** is a JavaScript library for pretty-printing SQL queries.

Expand Down Expand Up @@ -166,7 +166,7 @@ This makes SQL Formatter available as a global variable `window.sqlFormatter`.

### Usage in editors

- [VSCode extension](https://marketplace.visualstudio.com/items?itemName=inferrinizzard.prettier-sql-vscode)
- [VSCode extension](https://github.com/sql-formatter-org/sql-formatter-vscode)
- [Vim extension](https://github.com/fannheyward/coc-sql/)
- [Prettier plugin](https://github.com/un-ts/prettier/tree/master/packages/sql)

Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
"noImplicitReturns": true /* Report error when not all code paths in function return a value. */
},
"include": ["src", "test", "static"],
"exclude": ["node_modules", "vscode"]
"exclude": ["node_modules"]
}
5 changes: 0 additions & 5 deletions vscode/.gitignore

This file was deleted.

17 changes: 0 additions & 17 deletions vscode/.vscode/launch.json

This file was deleted.

11 changes: 0 additions & 11 deletions vscode/.vscode/settings.json

This file was deleted.

20 changes: 0 additions & 20 deletions vscode/.vscode/tasks.json

This file was deleted.

10 changes: 0 additions & 10 deletions vscode/.vscodeignore

This file was deleted.

1 change: 0 additions & 1 deletion vscode/.yarnrc

This file was deleted.

72 changes: 0 additions & 72 deletions vscode/CHANGELOG.md

This file was deleted.

21 changes: 0 additions & 21 deletions vscode/LICENSE

This file was deleted.

55 changes: 0 additions & 55 deletions vscode/README.md

This file was deleted.

Loading