├── .editorconfig ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── dependabot-auto-merge.yml │ └── lint-md.yml ├── .gitignore ├── .gitmodules ├── .lintmdrc ├── .zhlintignore ├── .zhlintrc ├── LICENSE ├── README.md ├── _config.yml └── docs └── bridge.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/design-patterns-for-humans-cn/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/design-patterns-for-humans-cn/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/design-patterns-for-humans-cn/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot-auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/design-patterns-for-humans-cn/HEAD/.github/workflows/dependabot-auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/lint-md.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/design-patterns-for-humans-cn/HEAD/.github/workflows/lint-md.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.DS_Store 3 | .history/ -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/design-patterns-for-humans-cn/HEAD/.gitmodules -------------------------------------------------------------------------------- /.lintmdrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/design-patterns-for-humans-cn/HEAD/.lintmdrc -------------------------------------------------------------------------------- /.zhlintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/design-patterns-for-humans-cn/HEAD/.zhlintignore -------------------------------------------------------------------------------- /.zhlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/design-patterns-for-humans-cn/HEAD/.zhlintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/design-patterns-for-humans-cn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/design-patterns-for-humans-cn/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/design-patterns-for-humans-cn/HEAD/_config.yml -------------------------------------------------------------------------------- /docs/bridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/design-patterns-for-humans-cn/HEAD/docs/bridge.png --------------------------------------------------------------------------------