Skip to content

Commit

Permalink
Update .eslintrc.js
Browse files Browse the repository at this point in the history
  • Loading branch information
gouravmore authored Jan 16, 2024
1 parent dbb7892 commit b422c8d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,13 @@ module.exports = {
'no-unused-vars': 'off',
'react/prop-types': 'off',
'no-redeclare': 'off',
'no-global-assign': 'off'
'no-global-assign': 'off',
'no-extra-semi': 'off',
'no-irregular-whitespace': 'off',
'no-dupe-keys': 'off',
'no-prototype-builtins': 'off',
'react/jsx-key': 'off',
'react/react-in-jsx-scop': 'off',
'no-self-assign': 'off'
}
}

0 comments on commit b422c8d

Please sign in to comment.