├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ └── ci_app.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── tbump.toml └── vscode-dbt ├── .vscode └── launch.json ├── .vscodeignore ├── README.md ├── images └── vscode_dbt_icon.png ├── package.json └── snippets ├── snippets_markdown.json ├── snippets_sql.json └── snippets_yaml.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienboutonnet/vscode-dbt/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienboutonnet/vscode-dbt/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci_app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienboutonnet/vscode-dbt/HEAD/.github/workflows/ci_app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.vsix 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienboutonnet/vscode-dbt/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienboutonnet/vscode-dbt/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienboutonnet/vscode-dbt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienboutonnet/vscode-dbt/HEAD/README.md -------------------------------------------------------------------------------- /tbump.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienboutonnet/vscode-dbt/HEAD/tbump.toml -------------------------------------------------------------------------------- /vscode-dbt/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienboutonnet/vscode-dbt/HEAD/vscode-dbt/.vscode/launch.json -------------------------------------------------------------------------------- /vscode-dbt/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienboutonnet/vscode-dbt/HEAD/vscode-dbt/.vscodeignore -------------------------------------------------------------------------------- /vscode-dbt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienboutonnet/vscode-dbt/HEAD/vscode-dbt/README.md -------------------------------------------------------------------------------- /vscode-dbt/images/vscode_dbt_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienboutonnet/vscode-dbt/HEAD/vscode-dbt/images/vscode_dbt_icon.png -------------------------------------------------------------------------------- /vscode-dbt/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienboutonnet/vscode-dbt/HEAD/vscode-dbt/package.json -------------------------------------------------------------------------------- /vscode-dbt/snippets/snippets_markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienboutonnet/vscode-dbt/HEAD/vscode-dbt/snippets/snippets_markdown.json -------------------------------------------------------------------------------- /vscode-dbt/snippets/snippets_sql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienboutonnet/vscode-dbt/HEAD/vscode-dbt/snippets/snippets_sql.json -------------------------------------------------------------------------------- /vscode-dbt/snippets/snippets_yaml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastienboutonnet/vscode-dbt/HEAD/vscode-dbt/snippets/snippets_yaml.json --------------------------------------------------------------------------------