├── .cz-config.js ├── .eslintrc.js ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .lintstagedrc.json ├── .prettierrc ├── README.md ├── commitlint.config.js ├── package.json ├── src ├── a.ts └── b.ts └── tsconfig.json /.cz-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jp-liu/workflow-template/HEAD/.cz-config.js -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jp-liu/workflow-template/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jp-liu/workflow-template/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jp-liu/workflow-template/HEAD/.lintstagedrc.json -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jp-liu/workflow-template/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jp-liu/workflow-template/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jp-liu/workflow-template/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jp-liu/workflow-template/HEAD/package.json -------------------------------------------------------------------------------- /src/a.ts: -------------------------------------------------------------------------------- 1 | export const a = 'a' 2 | -------------------------------------------------------------------------------- /src/b.ts: -------------------------------------------------------------------------------- 1 | import { a } from './a' 2 | 3 | console.log(a) 4 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jp-liu/workflow-template/HEAD/tsconfig.json --------------------------------------------------------------------------------