├── .eslintrc.json ├── .github └── workflows │ └── linters.yml ├── .gitignore ├── .hintrc ├── .stylelintrc.json ├── LICENSE.md ├── README.md ├── dist ├── bundle.js └── index.html ├── package.json ├── src ├── index.html ├── index.js ├── statusUpdates.js ├── style.css └── taskFunctions.js └── webpack.config.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudiaRojasSoto/code_review_ToDoList/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/linters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudiaRojasSoto/code_review_ToDoList/HEAD/.github/workflows/linters.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store -------------------------------------------------------------------------------- /.hintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudiaRojasSoto/code_review_ToDoList/HEAD/.hintrc -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudiaRojasSoto/code_review_ToDoList/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudiaRojasSoto/code_review_ToDoList/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudiaRojasSoto/code_review_ToDoList/HEAD/README.md -------------------------------------------------------------------------------- /dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudiaRojasSoto/code_review_ToDoList/HEAD/dist/bundle.js -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudiaRojasSoto/code_review_ToDoList/HEAD/dist/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudiaRojasSoto/code_review_ToDoList/HEAD/package.json -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudiaRojasSoto/code_review_ToDoList/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudiaRojasSoto/code_review_ToDoList/HEAD/src/index.js -------------------------------------------------------------------------------- /src/statusUpdates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudiaRojasSoto/code_review_ToDoList/HEAD/src/statusUpdates.js -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudiaRojasSoto/code_review_ToDoList/HEAD/src/style.css -------------------------------------------------------------------------------- /src/taskFunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudiaRojasSoto/code_review_ToDoList/HEAD/src/taskFunctions.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaudiaRojasSoto/code_review_ToDoList/HEAD/webpack.config.js --------------------------------------------------------------------------------