diff --git a/.eslintrc.js b/.eslintrc.js index 189c83d..017231f 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -7,6 +7,11 @@ module.exports = { ecmaVersion: 11, }, rules: { + // Don't enforce block scope on "var" variable declarations, let JS behave as intended. + 'block-scoped-var': 'off', + // Don't enforce control flow closing curly brace needs to be + // on same line as next control flow opening statement + 'brace-style': 'off', // Don't enforce === eqeqeq: 'off', // Disable func-names rule so that we can have anonymous functions @@ -16,12 +21,16 @@ module.exports = { 'linebreak-style': 'off', // Allow console for students to debug 'no-console': 'off', + // Allow function param reassign for object properties + 'no-param-reassign': ['error', { props: false }], // Do not complain about unused main function 'no-unused-vars': ['error', { varsIgnorePattern: 'main' }], // Enable var instead of just let and const 'no-var': 'off', // Don't require a += b instead of a = a + b 'operator-assignment': 'off', + // Don't require array and object destructuring for variable assignment + 'prefer-destructuring': 'off', // Enable + sign to concatenate strings 'prefer-template': 'off', // Disable radix requirement for functions like parseInt diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..600afc3 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,17 @@ +Please fill out the survey before submitting the pull request. Thanks! + +🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀 + +How many hours did you spend on this assignment? + +Please fill in one error and/or error message you received while working on this assignment. + +What part of the assignment did you spend the most time on? + +Comfort Level (1-5): + +Completeness Level (1-5): + +What did you think of this deliverable? + +Is there anything in this code that you feel pleased about? diff --git a/README.md b/README.md deleted file mode 100644 index 32019d3..0000000 --- a/README.md +++ /dev/null @@ -1 +0,0 @@ -# Software Engineering 101 - Intro to Coding diff --git a/index.html b/index.html index 210c9ef..e986ea3 100644 --- a/index.html +++ b/index.html @@ -1,7 +1,7 @@
-