├── .gitattributes ├── .gitignore ├── .node-version ├── .travis.yml ├── .unibeautifyrc.yml ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs └── screenshot-timeout-message.png ├── images └── icon.png ├── index.js ├── jest.config.js ├── package.json ├── renovate.json ├── scripts └── update-readme.ts ├── src ├── EditProvider.ts ├── Editor.ts ├── beautifiers.ts ├── diffUtils.ts └── index.ts ├── test ├── extension.test.ts ├── jest-test-runner.ts ├── jest-vscode-environment.ts ├── jest-vscode-framework-setup.ts ├── jest.d.ts └── test-runner │ └── index.ts ├── testProject ├── .unibeautifyrc.yml ├── .vscode │ └── settings.json ├── SQL │ └── test.sql ├── configs │ └── .unibeautifyrc.json ├── css │ ├── .csscomb.json │ └── test.css ├── html │ └── test.html ├── javascript │ └── test.js ├── javascriptreact │ └── test.jsx ├── php │ ├── .php_cs.dist │ ├── test.myphp │ └── test.php └── typescript │ └── test.ts ├── tsconfig.json └── tslint.json /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | v10.5.0 -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/.travis.yml -------------------------------------------------------------------------------- /.unibeautifyrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/.unibeautifyrc.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/README.md -------------------------------------------------------------------------------- /docs/screenshot-timeout-message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/docs/screenshot-timeout-message.png -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/images/icon.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./out/src"); -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/renovate.json -------------------------------------------------------------------------------- /scripts/update-readme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/scripts/update-readme.ts -------------------------------------------------------------------------------- /src/EditProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/src/EditProvider.ts -------------------------------------------------------------------------------- /src/Editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/src/Editor.ts -------------------------------------------------------------------------------- /src/beautifiers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/src/beautifiers.ts -------------------------------------------------------------------------------- /src/diffUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/src/diffUtils.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/test/extension.test.ts -------------------------------------------------------------------------------- /test/jest-test-runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/test/jest-test-runner.ts -------------------------------------------------------------------------------- /test/jest-vscode-environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/test/jest-vscode-environment.ts -------------------------------------------------------------------------------- /test/jest-vscode-framework-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/test/jest-vscode-framework-setup.ts -------------------------------------------------------------------------------- /test/jest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/test/jest.d.ts -------------------------------------------------------------------------------- /test/test-runner/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/test/test-runner/index.ts -------------------------------------------------------------------------------- /testProject/.unibeautifyrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/testProject/.unibeautifyrc.yml -------------------------------------------------------------------------------- /testProject/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/testProject/.vscode/settings.json -------------------------------------------------------------------------------- /testProject/SQL/test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/testProject/SQL/test.sql -------------------------------------------------------------------------------- /testProject/configs/.unibeautifyrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/testProject/configs/.unibeautifyrc.json -------------------------------------------------------------------------------- /testProject/css/.csscomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/testProject/css/.csscomb.json -------------------------------------------------------------------------------- /testProject/css/test.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/testProject/css/test.css -------------------------------------------------------------------------------- /testProject/html/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/testProject/html/test.html -------------------------------------------------------------------------------- /testProject/javascript/test.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | function hello() { 6 | return "world"; 7 | } 8 | 9 | 10 | -------------------------------------------------------------------------------- /testProject/javascriptreact/test.jsx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | function hello() { 6 | return "world"; 7 | } 8 | 9 | 10 | -------------------------------------------------------------------------------- /testProject/php/.php_cs.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/testProject/php/.php_cs.dist -------------------------------------------------------------------------------- /testProject/php/test.myphp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/testProject/php/test.myphp -------------------------------------------------------------------------------- /testProject/php/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/testProject/php/test.php -------------------------------------------------------------------------------- /testProject/typescript/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/testProject/typescript/test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/vscode/HEAD/tslint.json --------------------------------------------------------------------------------