We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2be955 commit 6ecf649Copy full SHA for 6ecf649
.eslintrc.json
@@ -18,6 +18,7 @@
18
"no-unused-vars": 0,
19
"no-useless-constructor": 0,
20
"no-extend-native": 0,
21
- "import/no-unresolved": 0
+ "import/no-unresolved": 0,
22
+ "no-restricted-properties": 0
23
}
24
src/project-1.js
@@ -66,7 +66,7 @@ const isEven = (num) => {
66
};
67
68
const isOdd = (num) => {
69
- // return true if num is false
+ // return true if num is odd
70
// otherwise return false
71
// code here
72
0 commit comments