npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

eslint-plugin-scissors

v1.0.0

Published

detects long call chains/nested expressions

Downloads

35

Readme

eslint-plugin-scissors

version NPM downloads Build Status

👮🏻 detect long call chains/nested expressions ✂️

🙋 say goodbye to 'NullPointerError' 💣

Introduction

The rule named 'nested-expressions' will lint the code in then/catch method, throw warning when detect nested expressions that would case NPE error.

The cost of using TypeScript and flow is high for many large, old projects who are struggling with type checking.Scissors✂️ provides non-intrusive type checking designed to expose all hazards at once.

It saves us more than a hundred hours of problem finding time and reduces the number of null pointer errors reported online by nearly 70% over the same period.Hope this will help you too.

🚫 Examples of incorrect code for this rule:

API.getList()
    .then(function (res) {
        this.result.add = res.data.add; // res.data could be null
     });

API.getList()
    .then((res) => {
        if (res.status === 0) {
            this.result = res.status && res.data.length ? res.data : []; // res.data could be null
        }
})

✅ Examples of correct code that have made fault-tolerant:

API.getList()
    .then(function (res) {
        this.result.add = res.data ? res.data.add : {};
    });


API.getList()
    .then(function (res) {
        if (res.data) {
            this.result.add = res.data.add;
        }
     });

API.getList()
    .then(function (res) {
        try {
            this.result.add = res.data.add;
        } catch (e) {
            // blabla
        }
     });

API.getList()
    .then(function (res) {
        if (res && res.status && res.data && res.data.page) {
            this.result.list = res.data.page.list;
        }
     });

Quickstart

Installation

Install ESLint and this plugin either locally or globally.

$ npm install eslint --save-dev
$ npm install eslint-plugin-scissors --save-dev

Configuration

Then add a reference to this plugin and selected rules in your eslint config:

{
  "plugins": [
    "scissors"
  ],
  "rules": {
    // default setting we recommended
    "scissors/nested-expressions": 1
  }
}

If you make sure that some variables using is absolutely safe(of course, there is no absolutely safe in development🙂), you can add these to white list to skip the plugin check:

  "rules": {
    // if you use Angular.js, maybe skipping '$scope' is useful
    "scissors/nested-expressions": [1, { "skip": ['$scope', 'window', 'this.queryForm'] }]
  }

Note the situation that use of the response value to rewrite the variable, it would cause NPE too.

Tips: If you want to lint the '.vue' file, you need to import eslint-plugin-vue:

  "plugins": [
    "vue",
    "scissors"
  ]

See Configuring Eslint on eslint.org for more info.

Recomended Usage

The first run, you're likely to receive a lot of warnings. dealing with all risks at once is hard, so suggest that you run eslint only on changes files using pre-commit and lint-staged:

"scripts": {
  "check-commit": "eslint",
  "lint-staged": "lint-staged"
},
"lint-staged": {
  "*.js": ["check-commit"],
  "*.vue": ["check-commit"]
},
"pre-commit": [
  "lint-staged"
]

If you use eslint-loader in Webpack, suggest that you set quiet option:

module.exports = {
  entry: "...",
  module: {
    rules: [
      {
        test: /\.js$/,
        exclude: /node_modules/,
        loader: "eslint-loader",
        options: {
          quiet: true,
        }
      },
    ],
  },
}

Contributing

Any issue and PR is super welcome!

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D