@putout/plugin-remove-useless-constructor
putout plugin adds ability to remove useless constructor
Last updated 5 years ago by coderaiser .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install @putout/plugin-remove-useless-constructor 
SYNC missed versions from official npm registry.

@putout/plugin-remove-useless-constructor NPM version

The constructor method is a special method of a class for creating and initializing an object instance of that class.

(c) MDN

????Putout plugin adds ability to remove useless constructor. Check out in ????Putout Editor.

Install

npm i @putout/plugin-remove-useless-constructor

Rule

{
    "rules": {
        "remove-useless-constructor": "on"
    }
}

❌ Example of incorrect code

class A extends B() {
    constructor(...args) {
        super(...args);
    }
}

✅ Example of correct code

class A extends B() {}

License

MIT

Current Tags

  • 3.0.0                                ...           latest (a year ago)

4 Versions

  • 3.0.0                                ...           a year ago
  • 2.0.0                                ...           2 years ago
  • 1.0.1                                ...           2 years ago
  • 1.0.0                                ...           5 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 1
Dependencies (0)
None
Dev Dependencies (6)
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |