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-config-will-robinson

v3.1.2

Published

Danger, Will Robinson!

Downloads

21

Readme

ESLint Config, Will Robinson!

Mr. Will Robinson, THIS CONFIGURATION HAS BEEN FORMULATED FOR THE EXCLUSIVE PURPOSE OF AVERTING LOGICAL ERRORS IN YOUR CODE, TO THE GREATEST EXTENT POSSIBLE.

THIS CONFIGURATION WILL NOT COMPLAIN ABOUT YOUR ARBITRARY STYLISTIC DECISIONS. YOU MAY PUT WHATEVER WHITESPACE YOU WANT, WHEREVER YOU WANT. YOU MAY OMIT BRACES AROUND if, AND EVEN OMIT SEMICOLONS, TOO… IF YOU WISH. THE CONFIGURATION WILL SEE THE MISSION THROUGH.

STAY VIGILANT, Mr. Will Robinson! ADOPT THIS SUPERIOR ESLint CONFIGURATION, IMMEDIATELY!

Usage

Install in a project:

yarn add -D eslint eslint-config-will-robinson
npm i -D eslint eslint-config-will-robinson

Create an .eslintrc file in your project and extend the configuration:

{
  "extends": "will-robinson"
}

Lint your project using the relevant plugin for your editor, or with the ESLint CLI.

Environments

"extends": "will-robinson" assumes nothing about the environment in which the code will run. This may be useful for writing “isomorphic” code (code that runs in both Node.js and web browsers).

For the ubiquitous cases in which interaction with the host environment is necessary (e.g. for use of Node’s process or the DOM’s document globals), this configuration offers alternate flavors for common environments. These flavors can be used instead by way of the following alternate .eslintrc file contents:

  • Environment-agnostic, but with ES modules: {"extends": "will-robinson/esm"}
  • Node.js with traditional CommonJS: {"extends": "will-robinson/node"}
  • Node.js with ES modules: {"extends": "will-robinson/node-esm"}
  • Browsers with traditional scripts: {"extends": "will-robinson/browser"}
  • Browsers with ES modules: {"extends": "will-robinson/browser-esm"}

Syntax Extensions

Support for parsing JSX syntax, and checks for common blunders when writing JSX with Facebook’s “React” library, are also available.

Since JSX and React can be used in both browser and server environments (and, therefore, also isomorphic contexts), the JSX configuration provided by this plugin is designed to be applied in addition to its other configurations.

For instance, to enable JSX+React checks when writing code for a browser (perhaps the most common case), you could do:

{
  "extends": [
    "will-robinson/browser-esm",
    "will-robinson/react-jsx"
  ]
}

Or, if writing JSX+React that executes on servers in addition to browsers, you could use the following setup, which supports isomorphism:

{
  "extends": [
    "will-robinson",
    "will-robinson/react-jsx"
  ]
}