├── .eslintrc ├── .gitignore ├── .prettierrc.json ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── .yarnrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── RELEASE.md ├── package.json ├── sql-formatter-icon.png ├── src ├── SqlFormattingProvider.ts ├── config.ts ├── extension.ts ├── formatEditorText.ts ├── formatSelection.ts ├── sqlDialects.ts └── test │ ├── runTest.ts │ └── suite │ ├── extension.test.ts │ └── index.ts ├── test-data ├── example-no-newline.sql ├── example.sql └── selection.sql ├── tsconfig.json ├── upgrade-sql-formatter.sh └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sql-formatter-org/sql-formatter-vscode/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sql-formatter-org/sql-formatter-vscode/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sql-formatter-org/sql-formatter-vscode/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sql-formatter-org/sql-formatter-vscode/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sql-formatter-org/sql-formatter-vscode/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sql-formatter-org/sql-formatter-vscode/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sql-formatter-org/sql-formatter-vscode/HEAD/.vscodeignore -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- 1 | --ignore-engines true -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sql-formatter-org/sql-formatter-vscode/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sql-formatter-org/sql-formatter-vscode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sql-formatter-org/sql-formatter-vscode/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sql-formatter-org/sql-formatter-vscode/HEAD/RELEASE.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sql-formatter-org/sql-formatter-vscode/HEAD/package.json -------------------------------------------------------------------------------- /sql-formatter-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sql-formatter-org/sql-formatter-vscode/HEAD/sql-formatter-icon.png -------------------------------------------------------------------------------- /src/SqlFormattingProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sql-formatter-org/sql-formatter-vscode/HEAD/src/SqlFormattingProvider.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sql-formatter-org/sql-formatter-vscode/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sql-formatter-org/sql-formatter-vscode/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/formatEditorText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sql-formatter-org/sql-formatter-vscode/HEAD/src/formatEditorText.ts -------------------------------------------------------------------------------- /src/formatSelection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sql-formatter-org/sql-formatter-vscode/HEAD/src/formatSelection.ts -------------------------------------------------------------------------------- /src/sqlDialects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sql-formatter-org/sql-formatter-vscode/HEAD/src/sqlDialects.ts -------------------------------------------------------------------------------- /src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sql-formatter-org/sql-formatter-vscode/HEAD/src/test/runTest.ts -------------------------------------------------------------------------------- /src/test/suite/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sql-formatter-org/sql-formatter-vscode/HEAD/src/test/suite/extension.test.ts -------------------------------------------------------------------------------- /src/test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sql-formatter-org/sql-formatter-vscode/HEAD/src/test/suite/index.ts -------------------------------------------------------------------------------- /test-data/example-no-newline.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sql-formatter-org/sql-formatter-vscode/HEAD/test-data/example-no-newline.sql -------------------------------------------------------------------------------- /test-data/example.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sql-formatter-org/sql-formatter-vscode/HEAD/test-data/example.sql -------------------------------------------------------------------------------- /test-data/selection.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sql-formatter-org/sql-formatter-vscode/HEAD/test-data/selection.sql -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sql-formatter-org/sql-formatter-vscode/HEAD/tsconfig.json -------------------------------------------------------------------------------- /upgrade-sql-formatter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sql-formatter-org/sql-formatter-vscode/HEAD/upgrade-sql-formatter.sh -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sql-formatter-org/sql-formatter-vscode/HEAD/yarn.lock --------------------------------------------------------------------------------