├── .github └── workflows │ └── publish.yaml ├── .gitignore ├── .npmignore ├── .npmrc ├── README.md ├── package.json ├── prettier.config.js ├── sample └── index.ts └── tsconfig.json /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-prettier-config/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-prettier-config/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-prettier-config/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-prettier-config/HEAD/.npmrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-prettier-config/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-prettier-config/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-prettier-config/HEAD/prettier.config.js -------------------------------------------------------------------------------- /sample/index.ts: -------------------------------------------------------------------------------- 1 | let a = 'abc'; 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-prettier-config/HEAD/tsconfig.json --------------------------------------------------------------------------------