├── .editorconfig ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── src ├── index.ts └── snake-naming.strategy.ts ├── tests └── snake-naming.strategy.test.ts ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonivj5/typeorm-naming-strategies/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonivj5/typeorm-naming-strategies/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonivj5/typeorm-naming-strategies/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonivj5/typeorm-naming-strategies/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonivj5/typeorm-naming-strategies/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonivj5/typeorm-naming-strategies/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonivj5/typeorm-naming-strategies/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonivj5/typeorm-naming-strategies/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/snake-naming.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonivj5/typeorm-naming-strategies/HEAD/src/snake-naming.strategy.ts -------------------------------------------------------------------------------- /tests/snake-naming.strategy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonivj5/typeorm-naming-strategies/HEAD/tests/snake-naming.strategy.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonivj5/typeorm-naming-strategies/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonivj5/typeorm-naming-strategies/HEAD/tslint.json --------------------------------------------------------------------------------