├── .gitattributes ├── .gitignore ├── .vscode └── launch.json ├── .vscodeignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── demo.gif ├── icons └── logo.png ├── package.json ├── snippets ├── svelte-script.json ├── svelte-style.json └── svelte.json ├── tsconfig.json └── tslint.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivethree-team/vscode-svelte-snippets/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | node_modules 3 | vscode-test/ 4 | *.vsix 5 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivethree-team/vscode-svelte-snippets/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivethree-team/vscode-svelte-snippets/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivethree-team/vscode-svelte-snippets/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivethree-team/vscode-svelte-snippets/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivethree-team/vscode-svelte-snippets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivethree-team/vscode-svelte-snippets/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivethree-team/vscode-svelte-snippets/HEAD/demo.gif -------------------------------------------------------------------------------- /icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivethree-team/vscode-svelte-snippets/HEAD/icons/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivethree-team/vscode-svelte-snippets/HEAD/package.json -------------------------------------------------------------------------------- /snippets/svelte-script.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivethree-team/vscode-svelte-snippets/HEAD/snippets/svelte-script.json -------------------------------------------------------------------------------- /snippets/svelte-style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivethree-team/vscode-svelte-snippets/HEAD/snippets/svelte-style.json -------------------------------------------------------------------------------- /snippets/svelte.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivethree-team/vscode-svelte-snippets/HEAD/snippets/svelte.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivethree-team/vscode-svelte-snippets/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivethree-team/vscode-svelte-snippets/HEAD/tslint.json --------------------------------------------------------------------------------