1.0.1 • Published 1 year ago

eslint-plugin-no-this-this v1.0.1

Weekly downloads
-
License
-
Repository
-
Last release
1 year ago

eslint-no-this-this

This ESLint plugin provides a rule to enforce not using this.this in your code.

Installation

You can install this plugin using npm:

npm install eslint-no-this-this --save-dev

Then use it in your eslintrc file:

module.exports = {
  plugins: [
    // other plugins...
    "no-this-this" // Just use the suffix after eslint-plugin-
  ],
  rules: {
    // other rules...
    "no-this-this/no-this-this": "error",
  },
};
1.0.1

1 year ago

1.0.0

1 year ago