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

@schablone/eslint-config

v5.1.2

Published

Code style package for Alchemisten projects

Downloads

85

Readme

ESLint Config

Preconfigured ESLint rules and Prettier formatting for plug and play usage in projects.

For NX projects simply copy over the rules for now.

How to use

  • Install @schablone/eslint-config with: yarn add @schablone/eslint-config -D or npm install @schablone/eslint-config --save-dev
  • Install the required peer dependencies if not present: yarn add eslint prettier -D or npm install eslint prettier --save-dev
  • Use it within your .eslintrc:
    {
        "extends": "@schablone/eslint-config"
    }
  • Be aware, that this config is meant to be used with React versions 17 and above, because it turns off the react/react-in-jsx-scope rule

New release

Please note, that any change to the linting rules that produces an error and not just a warning needs to be major release, because it will break dependent code.

Custom rules

These are all the rules which differ from the AirBnB config or the default Prettier settings:

ES Lint

  • arrow-body-style: Turned off, because we want to keep the option to be explicit
  • import/prefer-default-export: Default imports are not preferred
  • import/extensions: Turned off, because it is not necessary with Typescript
  • no-await-in-loop: It is more common to have dependent calls in a loop than parallelizable calls
  • no-cond-assign: Turned off to allow assigning in while loops
  • no-restricted-imports: Make sure all Material UI components are imported directly from core
  • no-restricted-syntax: for (of) considered fast enough for our use cases, beware for (in) and check object property yourself
  • no-return-await: Debugging is improved with return await at the cost of an extra microtask
  • no-useless-constructor: Empty constructor required by some redux implementations
  • sort-imports: Members in a multiple member import declaration should be sorted alphabetically

React

  • react/function-component-definition: Set to warn if not an arrow-function
  • react/react-in-jsx-scope: Turned off, because it is not necessary anymore since React 17
  • react/require-default-props: Turned off, because it will be deprecated in upcoming React versions anyway (use default parameters instead)

Typescript

  • @typescript-eslint/consistent-type-imports: Produce a warning if the type imports are not marked as such
  • @typescript-eslint/explicit-member-accessibility: Require explicit accessibility declaration of all class members
  • @typescript-eslint/explicit-module-boundary-types: Not necessary because IntelliSense catches this in a sufficient fashion
  • @typescript-eslint/no-unused-vars: Only produce warnings for unused variables

Prettier

  • printWidth: Print width is set to 120, instead of 80 for better readability
  • semi: Semicolons are required
  • singleQuote: Single quotes are used instead of double quotes in normal code

Further reading