├── .github └── workflows │ └── linters.yml ├── .gitignore ├── MIT.md ├── README.md ├── css └── style.css ├── images └── Screenshot.png └── index.html /.github/workflows/linters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodechaser/code-review/HEAD/.github/workflows/linters.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # .gitignore 2 | node_modules/ -------------------------------------------------------------------------------- /MIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodechaser/code-review/HEAD/MIT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodechaser/code-review/HEAD/README.md -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodechaser/code-review/HEAD/css/style.css -------------------------------------------------------------------------------- /images/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodechaser/code-review/HEAD/images/Screenshot.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodechaser/code-review/HEAD/index.html --------------------------------------------------------------------------------