├── .editorconfig ├── .envrc ├── .github ├── CODEOWNERS └── workflows │ └── build.yml ├── .gitignore ├── .husky └── pre-commit ├── .textlintrc ├── .vscode ├── extensions.json └── settings.json ├── CONTRIBUTING.md ├── LICENSE.txt ├── Makefile ├── README.md ├── docs ├── alumni.md ├── company.md ├── culture.md ├── interviews.md ├── members.md ├── organization.md ├── sponsorship.md └── technology-stack.md ├── flake.lock ├── flake.nix ├── images ├── hire.png ├── jobmiru.png └── nurture.png ├── package.json ├── prh-rules └── japanese.yml ├── renovate.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herp-inc/engineering-careers/HEAD/.editorconfig -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @ACJustPlay @ryota-ka 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herp-inc/engineering-careers/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | result/ 3 | yarn-error.log 4 | .direnv -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | make lint 2 | -------------------------------------------------------------------------------- /.textlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herp-inc/engineering-careers/HEAD/.textlintrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["esbenp.prettier-vscode"] 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true 3 | } 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herp-inc/engineering-careers/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2020 HERP, Inc. 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herp-inc/engineering-careers/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herp-inc/engineering-careers/HEAD/README.md -------------------------------------------------------------------------------- /docs/alumni.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herp-inc/engineering-careers/HEAD/docs/alumni.md -------------------------------------------------------------------------------- /docs/company.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herp-inc/engineering-careers/HEAD/docs/company.md -------------------------------------------------------------------------------- /docs/culture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herp-inc/engineering-careers/HEAD/docs/culture.md -------------------------------------------------------------------------------- /docs/interviews.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herp-inc/engineering-careers/HEAD/docs/interviews.md -------------------------------------------------------------------------------- /docs/members.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herp-inc/engineering-careers/HEAD/docs/members.md -------------------------------------------------------------------------------- /docs/organization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herp-inc/engineering-careers/HEAD/docs/organization.md -------------------------------------------------------------------------------- /docs/sponsorship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herp-inc/engineering-careers/HEAD/docs/sponsorship.md -------------------------------------------------------------------------------- /docs/technology-stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herp-inc/engineering-careers/HEAD/docs/technology-stack.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herp-inc/engineering-careers/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herp-inc/engineering-careers/HEAD/flake.nix -------------------------------------------------------------------------------- /images/hire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herp-inc/engineering-careers/HEAD/images/hire.png -------------------------------------------------------------------------------- /images/jobmiru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herp-inc/engineering-careers/HEAD/images/jobmiru.png -------------------------------------------------------------------------------- /images/nurture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herp-inc/engineering-careers/HEAD/images/nurture.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herp-inc/engineering-careers/HEAD/package.json -------------------------------------------------------------------------------- /prh-rules/japanese.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herp-inc/engineering-careers/HEAD/prh-rules/japanese.yml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["github>herp-inc/renovate.json"] 3 | } 4 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herp-inc/engineering-careers/HEAD/yarn.lock --------------------------------------------------------------------------------