├── .eslintrc.json ├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── README_EN.md ├── extension.js ├── images ├── command.gif └── logo.png ├── jsconfig.json ├── package.json ├── src ├── index.js ├── js-beautify.conf.js └── plugins.js ├── test ├── extension.test.js ├── index.js └── test.js ├── todo.md ├── vsc-extension-quickstart.md └── vue-format-0.1.8.vsix /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/win7killer/vue-format/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/win7killer/vue-format/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .vscode-test/ 3 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/win7killer/vue-format/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/win7killer/vue-format/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/win7killer/vue-format/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/win7killer/vue-format/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/win7killer/vue-format/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/win7killer/vue-format/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/win7killer/vue-format/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/win7killer/vue-format/HEAD/README_EN.md -------------------------------------------------------------------------------- /extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/win7killer/vue-format/HEAD/extension.js -------------------------------------------------------------------------------- /images/command.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/win7killer/vue-format/HEAD/images/command.gif -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/win7killer/vue-format/HEAD/images/logo.png -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/win7killer/vue-format/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/win7killer/vue-format/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/win7killer/vue-format/HEAD/src/index.js -------------------------------------------------------------------------------- /src/js-beautify.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/win7killer/vue-format/HEAD/src/js-beautify.conf.js -------------------------------------------------------------------------------- /src/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/win7killer/vue-format/HEAD/src/plugins.js -------------------------------------------------------------------------------- /test/extension.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/win7killer/vue-format/HEAD/test/extension.test.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/win7killer/vue-format/HEAD/test/index.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/win7killer/vue-format/HEAD/test/test.js -------------------------------------------------------------------------------- /todo.md: -------------------------------------------------------------------------------- 1 | # todo list 2 | - 升级到 ts 3 | - rollup 或者 webpack 打包 4 | - 支持项目内配置 5 | -------------------------------------------------------------------------------- /vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/win7killer/vue-format/HEAD/vsc-extension-quickstart.md -------------------------------------------------------------------------------- /vue-format-0.1.8.vsix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/win7killer/vue-format/HEAD/vue-format-0.1.8.vsix --------------------------------------------------------------------------------