├── .gitignore ├── .nvmrc ├── .prettierrc ├── .travis.yml ├── LICENSE ├── README.md ├── fixtures └── sample-repo-1 │ ├── package.json │ ├── readme.md │ └── someUglyCode.js ├── jest.config.js ├── package.json ├── pnpm-lock.yaml ├── src ├── be-pretty.spec.ts ├── be-pretty.ts ├── executeCommand.ts ├── format-all.spec.ts └── format-all.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capaj/be-pretty/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capaj/be-pretty/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capaj/be-pretty/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capaj/be-pretty/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capaj/be-pretty/HEAD/README.md -------------------------------------------------------------------------------- /fixtures/sample-repo-1/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /fixtures/sample-repo-1/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capaj/be-pretty/HEAD/fixtures/sample-repo-1/readme.md -------------------------------------------------------------------------------- /fixtures/sample-repo-1/someUglyCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capaj/be-pretty/HEAD/fixtures/sample-repo-1/someUglyCode.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capaj/be-pretty/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capaj/be-pretty/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capaj/be-pretty/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/be-pretty.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capaj/be-pretty/HEAD/src/be-pretty.spec.ts -------------------------------------------------------------------------------- /src/be-pretty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capaj/be-pretty/HEAD/src/be-pretty.ts -------------------------------------------------------------------------------- /src/executeCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capaj/be-pretty/HEAD/src/executeCommand.ts -------------------------------------------------------------------------------- /src/format-all.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capaj/be-pretty/HEAD/src/format-all.spec.ts -------------------------------------------------------------------------------- /src/format-all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capaj/be-pretty/HEAD/src/format-all.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capaj/be-pretty/HEAD/tsconfig.json --------------------------------------------------------------------------------