├── .codeclimate.yml ├── .github └── ISSUE_TEMPLATE │ ├── beautifier_request.md │ ├── bug_report.md │ ├── feature_request.md │ ├── language_request.md │ └── option_request.md ├── .gitignore ├── .node-version ├── .npmignore ├── .travis.yml ├── .unibeautifyrc.yml ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── ROADMAP.md ├── __mocks__ ├── fakedep │ ├── index.js │ └── package.json └── requireg-global-fakedep │ ├── index.js │ └── package.json ├── appveyor.yml ├── jest.config.js ├── netlify.toml ├── package.json ├── renovate.json ├── scripts ├── update-languages.ts ├── update-type-defs.ts └── utils.ts ├── src ├── DependencyManager │ ├── Dependency.ts │ ├── DependencyFactory.ts │ ├── DependencyManager.ts │ ├── ExecutableDependency.ts │ ├── NodeDependency.ts │ ├── Version.ts │ └── index.ts ├── InlineFlagManager.ts ├── LanguageManager.ts ├── OptionsManager.ts ├── beautifier.ts ├── index.ts ├── language.ts ├── languages.json ├── languages.ts ├── options.ts └── utils.ts ├── test ├── DependencyManager │ ├── DependencyManager.spec.ts │ ├── ExecutableDependency.spec.ts │ ├── NodeDependency.spec.ts │ └── Version.spec.ts ├── InlineFlagManager.spec.ts ├── beautifier │ ├── beautifier.spec.ts │ ├── config.spec.ts │ ├── dependency.spec.ts │ ├── languages.spec.ts │ ├── options.spec.ts │ └── pipeline.spec.ts ├── index.spec.ts ├── setupTests.js ├── tslint.json └── utils.spec.ts ├── tsconfig.json └── tslint.json /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/beautifier_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/.github/ISSUE_TEMPLATE/beautifier_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/language_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/.github/ISSUE_TEMPLATE/language_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/option_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/.github/ISSUE_TEMPLATE/option_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | v9.10.1 -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | * 2 | !dist/src/**/* 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/.travis.yml -------------------------------------------------------------------------------- /.unibeautifyrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/.unibeautifyrc.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/README.md -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /__mocks__/fakedep/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function() {}; -------------------------------------------------------------------------------- /__mocks__/fakedep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/__mocks__/fakedep/package.json -------------------------------------------------------------------------------- /__mocks__/requireg-global-fakedep/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function() {}; -------------------------------------------------------------------------------- /__mocks__/requireg-global-fakedep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/__mocks__/requireg-global-fakedep/package.json -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/appveyor.yml -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/jest.config.js -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/renovate.json -------------------------------------------------------------------------------- /scripts/update-languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/scripts/update-languages.ts -------------------------------------------------------------------------------- /scripts/update-type-defs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/scripts/update-type-defs.ts -------------------------------------------------------------------------------- /scripts/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/scripts/utils.ts -------------------------------------------------------------------------------- /src/DependencyManager/Dependency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/src/DependencyManager/Dependency.ts -------------------------------------------------------------------------------- /src/DependencyManager/DependencyFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/src/DependencyManager/DependencyFactory.ts -------------------------------------------------------------------------------- /src/DependencyManager/DependencyManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/src/DependencyManager/DependencyManager.ts -------------------------------------------------------------------------------- /src/DependencyManager/ExecutableDependency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/src/DependencyManager/ExecutableDependency.ts -------------------------------------------------------------------------------- /src/DependencyManager/NodeDependency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/src/DependencyManager/NodeDependency.ts -------------------------------------------------------------------------------- /src/DependencyManager/Version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/src/DependencyManager/Version.ts -------------------------------------------------------------------------------- /src/DependencyManager/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/src/DependencyManager/index.ts -------------------------------------------------------------------------------- /src/InlineFlagManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/src/InlineFlagManager.ts -------------------------------------------------------------------------------- /src/LanguageManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/src/LanguageManager.ts -------------------------------------------------------------------------------- /src/OptionsManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/src/OptionsManager.ts -------------------------------------------------------------------------------- /src/beautifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/src/beautifier.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/src/language.ts -------------------------------------------------------------------------------- /src/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/src/languages.json -------------------------------------------------------------------------------- /src/languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/src/languages.ts -------------------------------------------------------------------------------- /src/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/src/options.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/src/utils.ts -------------------------------------------------------------------------------- /test/DependencyManager/DependencyManager.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/test/DependencyManager/DependencyManager.spec.ts -------------------------------------------------------------------------------- /test/DependencyManager/ExecutableDependency.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/test/DependencyManager/ExecutableDependency.spec.ts -------------------------------------------------------------------------------- /test/DependencyManager/NodeDependency.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/test/DependencyManager/NodeDependency.spec.ts -------------------------------------------------------------------------------- /test/DependencyManager/Version.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/test/DependencyManager/Version.spec.ts -------------------------------------------------------------------------------- /test/InlineFlagManager.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/test/InlineFlagManager.spec.ts -------------------------------------------------------------------------------- /test/beautifier/beautifier.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/test/beautifier/beautifier.spec.ts -------------------------------------------------------------------------------- /test/beautifier/config.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/test/beautifier/config.spec.ts -------------------------------------------------------------------------------- /test/beautifier/dependency.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/test/beautifier/dependency.spec.ts -------------------------------------------------------------------------------- /test/beautifier/languages.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/test/beautifier/languages.spec.ts -------------------------------------------------------------------------------- /test/beautifier/options.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/test/beautifier/options.spec.ts -------------------------------------------------------------------------------- /test/beautifier/pipeline.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/test/beautifier/pipeline.spec.ts -------------------------------------------------------------------------------- /test/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/test/index.spec.ts -------------------------------------------------------------------------------- /test/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/test/setupTests.js -------------------------------------------------------------------------------- /test/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/test/tslint.json -------------------------------------------------------------------------------- /test/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/test/utils.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unibeautify/unibeautify/HEAD/tslint.json --------------------------------------------------------------------------------