Skip to content

Commit 085caa4

Browse files
authored
Merge PR #453: Move VSCode extension to separate repository
2 parents 0821f16 + de2944b commit 085caa4

22 files changed

+4
-2995
lines changed

.eslintignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@
22
/lib
33
/dist
44
/coverage
5-
/vscode
65
webpack.*.js
76
/src/parser/grammar.ts

.eslintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"import/no-extraneous-dependencies": [
1717
"error",
1818
{
19-
"devDependencies": ["test/**", "**/*.test.js", "**/*.test.ts", "vscode/src/test/**"],
19+
"devDependencies": ["test/**", "**/*.test.js", "**/*.test.ts"],
2020
"packageDir": ["./"]
2121
}
2222
],

CONTRIBUTING.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,6 @@ For those who have admin access on the repo, the new release publish flow is as
1919
- `npm run release` (bumps version, git tag, git release, npm release) (does not work with `yarn`).
2020
- `git subtree push --prefix static origin gh-pages` (pushes demo page to GH pages)
2121

22-
To publish the VSCode Extension:
23-
24-
- ensure that the CHANGELOG and `package.json` are up to date before bumping version
25-
- ensure that the version does not conflict with a previous extension version
26-
- run the following commands in the `vscode/` dir (requires auth with Microsoft Dev account + access to VSCode team)
27-
- `yarn vsce:package`
28-
- `yarn vsce:publish` (can also be done via browser)
29-
3022
## Contributors
3123

3224
- Adrien Pyke <[email protected]>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<a href='https://github.com/sql-formatter-org/sql-formatter'><img src="static/prettier-sql-clean.svg" width="128"/></a>
22

3-
# 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)
3+
# 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)
44

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

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

167167
### Usage in editors
168168

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

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
"noImplicitReturns": true /* Report error when not all code paths in function return a value. */
2525
},
2626
"include": ["src", "test", "static"],
27-
"exclude": ["node_modules", "vscode"]
27+
"exclude": ["node_modules"]
2828
}

vscode/.gitignore

Lines changed: 0 additions & 5 deletions
This file was deleted.

vscode/.vscode/launch.json

Lines changed: 0 additions & 17 deletions
This file was deleted.

vscode/.vscode/settings.json

Lines changed: 0 additions & 11 deletions
This file was deleted.

vscode/.vscode/tasks.json

Lines changed: 0 additions & 20 deletions
This file was deleted.

vscode/.vscodeignore

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)