├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ └── test.yml ├── .gitignore ├── .vscodeignore ├── img └── icon.png ├── license ├── package.json ├── readme.md ├── screenshot-1.png ├── src ├── extension.ts └── set-text.ts ├── test.svg ├── tsconfig.json └── xo.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1000ch/vscode-svgo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1000ch/vscode-svgo/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1000ch/vscode-svgo/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | out 3 | -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- 1 | src/*.ts 2 | tsconfig.json 3 | test.svg 4 | -------------------------------------------------------------------------------- /img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1000ch/vscode-svgo/HEAD/img/icon.png -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1000ch/vscode-svgo/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1000ch/vscode-svgo/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1000ch/vscode-svgo/HEAD/readme.md -------------------------------------------------------------------------------- /screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1000ch/vscode-svgo/HEAD/screenshot-1.png -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1000ch/vscode-svgo/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/set-text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1000ch/vscode-svgo/HEAD/src/set-text.ts -------------------------------------------------------------------------------- /test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1000ch/vscode-svgo/HEAD/test.svg -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1000ch/vscode-svgo/HEAD/tsconfig.json -------------------------------------------------------------------------------- /xo.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1000ch/vscode-svgo/HEAD/xo.config.ts --------------------------------------------------------------------------------