eslint-plugin-immutable
eslint-plugin-immutable copied to clipboard
ESLint plugin to disable all mutation in JavaScript.
Hey! I see that there are some interesting and not published changes in your project. I can help you with active maintenance of this project if you want me to...
Bumps [eslint](https://github.com/eslint/eslint) from 2.11.0 to 6.6.0. Release notes *Sourced from [eslint's releases](https://github.com/eslint/eslint/releases).* > ## v6.6.0 > * [`39dfe08`](https://github.com/eslint/eslint/commit/39dfe0880fa934e287e8ea1f7b56d5cba8d43765) Update: false positives in function-call-argument-newline (fixes [#12123](https://github-redirect.dependabot.com/eslint/eslint/issues/12123)) ([#12280](https://github-redirect.dependabot.com/eslint/eslint/issues/12280)) (Scott O'Hara) > *...
Hey there, I'm a contributor for [`tslint-immutable`](https://www.npmjs.com/package/tslint-immutable). As you may be aware, [tslint is going to become deprecated by the end of 2019](https://github.com/palantir/tslint/issues/4534), and eslint will take over its role....
Hi. I very like this plugin, but I got stack while trying to make immutable getting of reference on native element. Official react documentation says [You may not use the...
This change is [](https://reviewable.io/reviews/jhusain/eslint-plugin-immutable/20)
1.0.0 on npm doesn't include the fix for `module.exports`
I'm using immutable classes as clean, transportable and easy-to-debug-and-maintain wrappers around Immutable.js state objects in order to clearly define the shape of the underlying data. Such a class is constructed...
Should this error on mutation? ```javascript const formattedQuery = { ...query, } delete formattedQuery['access-token'] ```
Hi This is currently a simplistic check that looks for calls of array methods that mutate. Not restricted to arrays currently so will actually block any method calls with push,...
#### Description: Warns when `Object.assign` is used with the first parameter anything else than object initialisation. #### Will warn: ``` js const foo = {}; Object.assign(foo, {bar: 'BAR'}); ``` ####...