├── .editorconfig ├── .gitattributes ├── .gitignore ├── license ├── media ├── icon.png └── screenshot.gif ├── package.json ├── readme.md └── snippets ├── assertions.json └── ava.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVerschueren/vscode-ava/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn.lock 3 | .vscode 4 | -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVerschueren/vscode-ava/HEAD/license -------------------------------------------------------------------------------- /media/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVerschueren/vscode-ava/HEAD/media/icon.png -------------------------------------------------------------------------------- /media/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVerschueren/vscode-ava/HEAD/media/screenshot.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVerschueren/vscode-ava/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVerschueren/vscode-ava/HEAD/readme.md -------------------------------------------------------------------------------- /snippets/assertions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVerschueren/vscode-ava/HEAD/snippets/assertions.json -------------------------------------------------------------------------------- /snippets/ava.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVerschueren/vscode-ava/HEAD/snippets/ava.json --------------------------------------------------------------------------------