├── .eslintrc.json ├── .gitignore ├── .vscode-test.mjs ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── demo.gif ├── ico.png ├── package.json ├── src ├── extension.ts └── test │ └── extension.test.ts ├── test.jsx ├── tsconfig.json ├── useeffectasyncdemo.gif ├── useeffectdemo.gif ├── useeffectdependency.gif ├── vsc-extension-quickstart.md └── webpack.config.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agillispie/react-emmet/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agillispie/react-emmet/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode-test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agillispie/react-emmet/HEAD/.vscode-test.mjs -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agillispie/react-emmet/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agillispie/react-emmet/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agillispie/react-emmet/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agillispie/react-emmet/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agillispie/react-emmet/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agillispie/react-emmet/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agillispie/react-emmet/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agillispie/react-emmet/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agillispie/react-emmet/HEAD/demo.gif -------------------------------------------------------------------------------- /ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agillispie/react-emmet/HEAD/ico.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agillispie/react-emmet/HEAD/package.json -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agillispie/react-emmet/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/test/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agillispie/react-emmet/HEAD/src/test/extension.test.ts -------------------------------------------------------------------------------- /test.jsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agillispie/react-emmet/HEAD/tsconfig.json -------------------------------------------------------------------------------- /useeffectasyncdemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agillispie/react-emmet/HEAD/useeffectasyncdemo.gif -------------------------------------------------------------------------------- /useeffectdemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agillispie/react-emmet/HEAD/useeffectdemo.gif -------------------------------------------------------------------------------- /useeffectdependency.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agillispie/react-emmet/HEAD/useeffectdependency.gif -------------------------------------------------------------------------------- /vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agillispie/react-emmet/HEAD/vsc-extension-quickstart.md -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agillispie/react-emmet/HEAD/webpack.config.js --------------------------------------------------------------------------------