├── .gitattributes ├── .github └── workflows │ └── linters.yml ├── .gitignore ├── .hintrc ├── .stylelintrc ├── LICENSE ├── README.md ├── babel └── index.babel ├── css └── style.css ├── hint-report └── file--C--Users-aleja-OneDrive-Documentos-GitHub-Microverse-Review.html ├── index.html ├── js └── index.js └── package.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VelzckC0D3/autoCodeReview/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/linters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VelzckC0D3/autoCodeReview/HEAD/.github/workflows/linters.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # .gitignore 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.hintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VelzckC0D3/autoCodeReview/HEAD/.hintrc -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VelzckC0D3/autoCodeReview/HEAD/.stylelintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VelzckC0D3/autoCodeReview/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /babel/index.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VelzckC0D3/autoCodeReview/HEAD/babel/index.babel -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VelzckC0D3/autoCodeReview/HEAD/css/style.css -------------------------------------------------------------------------------- /hint-report/file--C--Users-aleja-OneDrive-Documentos-GitHub-Microverse-Review.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VelzckC0D3/autoCodeReview/HEAD/hint-report/file--C--Users-aleja-OneDrive-Documentos-GitHub-Microverse-Review.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VelzckC0D3/autoCodeReview/HEAD/index.html -------------------------------------------------------------------------------- /js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VelzckC0D3/autoCodeReview/HEAD/js/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VelzckC0D3/autoCodeReview/HEAD/package.json --------------------------------------------------------------------------------