We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57fa621 commit 58c027dCopy full SHA for 58c027d
src-ts/.eslintrc.js
@@ -89,6 +89,12 @@ module.exports = {
89
],
90
'no-extra-boolean-cast': 'off',
91
'no-null/no-null': 'error',
92
+ 'no-param-reassign': [
93
+ 'error',
94
+ {
95
+ props: false
96
+ }
97
+ ],
98
'no-plusplus': [
99
'error',
100
{
src-ts/tools/learn/my-learning/MyLearning.tsx
@@ -42,7 +42,6 @@ const MyLearning: FC<{}> = () => {
42
43
const certificatesById: CertificatesByIdType = useMemo(() => (
44
certifications.reduce((certifs, certificate) => {
45
- // eslint-disable-next-line no-param-reassign
46
certifs[certificate.id] = certificate
47
return certifs
48
}, {} as unknown as CertificatesByIdType)
0 commit comments