├── .editorconfig ├── .github ├── PULL_REQUEST_TEMPLATE.md ├── stale.yml └── workflows │ └── node.js.yml ├── .gitignore ├── .nvmrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CRITERIA.md ├── LICENSE.md ├── README.md ├── RECOMMENDATIONS.md ├── index.js ├── package.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poteto/hiring-without-whiteboards/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poteto/hiring-without-whiteboards/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poteto/hiring-without-whiteboards/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poteto/hiring-without-whiteboards/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poteto/hiring-without-whiteboards/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/* 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poteto/hiring-without-whiteboards/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poteto/hiring-without-whiteboards/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CRITERIA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poteto/hiring-without-whiteboards/HEAD/CRITERIA.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poteto/hiring-without-whiteboards/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poteto/hiring-without-whiteboards/HEAD/README.md -------------------------------------------------------------------------------- /RECOMMENDATIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poteto/hiring-without-whiteboards/HEAD/RECOMMENDATIONS.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poteto/hiring-without-whiteboards/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poteto/hiring-without-whiteboards/HEAD/yarn.lock --------------------------------------------------------------------------------