├── .github └── workflows │ └── publish.yaml ├── .gitignore ├── .npmignore ├── .npmrc ├── README.md ├── eslint.config.js ├── package.json ├── sample └── index.ts └── tsconfig.json /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-eslint-config/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-eslint-config/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-eslint-config/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-eslint-config/HEAD/.npmrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-eslint-config/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-eslint-config/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-eslint-config/HEAD/package.json -------------------------------------------------------------------------------- /sample/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-eslint-config/HEAD/sample/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodfords-solutions/nestjs-eslint-config/HEAD/tsconfig.json --------------------------------------------------------------------------------