Skip to content

Instantly share code, notes, and snippets.

@fmoliveira
Created November 27, 2020 07:29
Show Gist options
  • Save fmoliveira/b2c9c2b4143073d5ebc1b9b7033c82f9 to your computer and use it in GitHub Desktop.
Save fmoliveira/b2c9c2b4143073d5ebc1b9b7033c82f9 to your computer and use it in GitHub Desktop.
eslint nuisances

How to circumvent eslint nuisances

no-param-reassign with immerjs

Ignore it for a specific parameter name: "no-param-reassign": ["error", { "props": true, "ignorePropertyModificationsFor": ["draft"] }],

Source: immerjs/immer#189 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment