├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── continuous-integration.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .release-it.json ├── .yarn └── releases │ └── yarn-4.9.2.cjs ├── .yarnrc ├── .yarnrc.yml ├── a-fake-prettier-to-test.cjs ├── examples ├── format-file.js └── run-format-file.js ├── index.cjs ├── index.d.cts ├── index.d.mts ├── license ├── package.json ├── prettier.config.js ├── readme.md ├── test.js └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/prettier-synchronized/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/continuous-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/prettier-synchronized/HEAD/.github/workflows/continuous-integration.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/prettier-synchronized/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | save-prefix="" 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/prettier-synchronized/HEAD/.prettierignore -------------------------------------------------------------------------------- /.release-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/prettier-synchronized/HEAD/.release-it.json -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.9.2.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/prettier-synchronized/HEAD/.yarn/releases/yarn-4.9.2.cjs -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- 1 | save-prefix "" 2 | -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/prettier-synchronized/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /a-fake-prettier-to-test.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/prettier-synchronized/HEAD/a-fake-prettier-to-test.cjs -------------------------------------------------------------------------------- /examples/format-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/prettier-synchronized/HEAD/examples/format-file.js -------------------------------------------------------------------------------- /examples/run-format-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/prettier-synchronized/HEAD/examples/run-format-file.js -------------------------------------------------------------------------------- /index.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/prettier-synchronized/HEAD/index.cjs -------------------------------------------------------------------------------- /index.d.cts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/prettier-synchronized/HEAD/index.d.cts -------------------------------------------------------------------------------- /index.d.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/prettier-synchronized/HEAD/index.d.mts -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/prettier-synchronized/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/prettier-synchronized/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/prettier-synchronized/HEAD/readme.md -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/prettier-synchronized/HEAD/test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/prettier-synchronized/HEAD/tsconfig.json --------------------------------------------------------------------------------