Socket
Socket
Sign inDemoInstall

eslint-plugin-ts-immutable

Package Overview
Dependencies
4
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    eslint-plugin-ts-immutable

ESLint rules to disable mutation in TypeScript.


Version published
Maintainers
1
Created

Changelog

Source

v0.1.0 - 2019-07-01

Merged

Readme

Source

eslint-plugin-ts-immutable

npm version travis build Coverage Status code style: prettier MIT license

ESLint rules to disable mutation in TypeScript.

Background

In some applications it is important to not mutate any data, for example when using Redux to store state in a React application. Moreover immutable data structures has a lot of advantages in general so I want to use them everywhere in my applications.

I originally used immutablejs for this purpose. It is a really nice library but I found it had some drawbacks. Specifically when debugging it was hard to see the structure, creating JSON was not straightforward, and passing parameters to other libraries required converting to regular mutable arrays and objects. The seamless-immutable project seems to have the same conclusions and they use regular objects and arrays and check for immutability at run-time. This solves all the aformentioned drawbacks but introduces a new drawback of only being enforced at run-time. (Altough you loose the structural sharing feature of immutablejs with this solution so you would have to consider if that is something you need).

Then typescript 2.0 came along and introduced readonly options for properties, indexers and arrays. This enables us to use regular object and arrays and have the immutability enfored at compile time instead of run-time. Now the only drawback is that there is nothing enforcing the use of readonly in typescript.

This can be solved by using linting rules. So the aim of this project is to leverage the type system in typescript to enforce immutability at compile-time while still using regular objects and arrays.

Installing

Make sure you have TypeScript and @typescript-eslint/parser installed, then install the plugin:

npm i eslint-plugin-ts-immutable --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-ts-immutable globally.

Usage

Add @typescript-eslint/parser to the parser field and ts-immutable to the plugins section of your .eslintrc configuration file. Then configure the rules you want to use under the rules section.

{
  "parser": "@typescript-eslint/parser",
  "plugins": ["ts-immutable"],
  "rules": {
    "@typescript-eslint/rule-name": "error"
  }
}

You can also enable all the recommended rules for our plugin:

{
  "extends": ["plugin:ts-immutable/recommended"]
}

If you want to use rules which require type information, you will need to specify a path to your tsconfig.json file in the "project" property of "parserOptions".

{
  "parser": "@typescript-eslint/parser",
  "parserOptions": {
    "project": "./tsconfig.json"
  },
  "plugins": ["ts-immutable"],
  "rules": {
    "ts-immutable/no-array-mutation": "error"
  }
}

See @typescript-eslint/parser's README.md for more information on the available "parserOptions".

Note: Make sure to use eslint --ext .js,.ts since by default eslint will only search for .js files.

Supported Rules

In addition to immutable rules this project also contains a few rules for enforcing a functional style of programming. The following rules are available:

Key: :heavy_check_mark: = recommended, :wrench: = fixable, :thought_balloon: = requires type information

Immutability rules

NameDescription:heavy_check_mark::wrench::thought_balloon:
ts-immutable/readonly-keywordEnforce readonly modifiers are used where possible.:heavy_check_mark::wrench:
ts-immutable/readonly-arrayPrefer readonly array over mutable arrays.:heavy_check_mark::wrench:
ts-immutable/no-letDisallow mutable variables.:heavy_check_mark::wrench:
ts-immutable/no-array-mutationDisallow mutating arrays.:heavy_check_mark::thought_balloon:
ts-immutable/no-object-mutationWIP:heavy_check_mark::thought_balloon:
ts-immutable/no-method-signaturePrefer property signatures with readonly modifiers over method signatures.:heavy_check_mark:
ts-immutable/no-deleteDisallow delete expressions.:heavy_check_mark:

Functional style rules

NameDescription:heavy_check_mark::wrench::thought_balloon:
ts-immutable/no-thisDisallow this access.:heavy_check_mark:
ts-immutable/no-classDisallow classes.:heavy_check_mark:
ts-immutable/no-mixed-interfaceRestrict interfaces so that only members of the same kind of are allowed in them.:heavy_check_mark:
ts-immutable/no-expression-statementUsing expressions to cause side-effects not allowed.:heavy_check_mark:
ts-immutable/no-if-statementDisallow if statements.:heavy_check_mark:
ts-immutable/no-loop-statementDisallow imperative loops.:heavy_check_mark:
ts-immutable/no-throwDisallow throwing exceptions.:heavy_check_mark:
ts-immutable/no-tryDisallow try-catch[-finally] and try-finally patterns.:heavy_check_mark:
ts-immutable/no-rejectDisallow try-catch[-finally] and try-finally patterns.:heavy_check_mark:

In addition to the immutability rules above, there are a few standard rules that needs to be enabled to achieve immutability.

no-var

Without this rule, it is still possible to create var variables that are mutable.

no-param-reassign

Without this rule, function parameters are mutable.

@typescript-eslint/explicit-function-return-type

For performance reasons, tslint-immutable does not check implicit return types. So for example this function will return an mutable array but will not be detected:

function foo() {
  return [1, 2, 3];
}

To avoid this situation you can enable @typescript-eslint/explicit-function-return-type. Now the above function is forced to declare the return type and the mutability will be detected.

How to contribute

For new features file an issue. For bugs, file an issue and optionally file a PR with a failing test.

How to develop

To execute the tests run yarn test.

To learn about eslint plugin development se the relevant section of the eslit docs. You can also checkout the typescript-eslint repo which has some more information specific to typescript.

In order to know which AST nodes are created for a snippet of typescript code you can use ast explorer with options JavaScript and @typescript-eslint/parser.

How to publish

yarn version --patch
yarn version --minor
yarn version --major

Prior work

This work was originally inspired by eslint-plugin-immutable.

Keywords

FAQs

Last updated on 01 Jul 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc