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

@kitnato/eslint-config-succinct

v3.3.0

Published

Strict, exhaustive & opinionated ESLint config for FP-oriented ES6 React & Typescript projects.

Downloads

16

Readme

eslint-config-succinct

An ESLint configuration library for projects based on React 18+ with Typescript 5+.

Purpose

This is an opinionated ESLint configuration that enforces consistent usage of ES6 & strict TypeScript non-OOP paradigms, as well as stylistic rules. It encourages adherence to functional-programming & accessibility best practices and restricts certain language features that are prone to anti-patterns.

NB: Not be used alongside Prettier, since this config includes @stylistic/eslint-plugin which supersedes its rules.

Particularities

Notable linting rules include:

  • class declarations are disallowed (encouraging the use of pure functions).
  • default exports are disallowed (named exports keep imports consistent).
  • interface declarations are disallowed (avoids declaration merging - use type instead).
  • enum declarations are disallowed (use string unions instead).
  • Object keys, union types, imports and component props are sorted in case-insensitive alphabetical order.
  • Unused variables in object spreads or function arguments can be denoted by prefixing with a "_".
  • Semicolons are not used, instead relying on ASI.
  • Enforces use of tab characters instead of spaces for indentation. This article lays out the debate, with pros and cons.

Installation

First, install this package alongside eslint:

npm install -D @kitnato/eslint-config-succinct eslint

Next, create the .eslintrc.json configuration file at the root of your project:

{
  "extends": "@kitnato/eslint-config-succinct",
}

Remember to set here any ignorePatterns if you require them beyond the standard build and dist folders, along with any other config overrides you may desire.

Usage

Once installed, you can run any eslint command.

You may also define scripts that will lint, fix and format your files to help automate your workflow.

For example, in your package.json, add the following under scripts:

"scripts": {
  "lint-code": "eslint --fix --ext .ts,.tsx .",
}

IDE setup

VS Code

If you use Microsoft VS Code, you can add the following snippet at the top of your .vscode/settings.json to automatically run the linter and fix all issues whenever a file is saved.

"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
  "source.fixAll.eslint": true
}
"eslint.format.enable": true,

License

This work is licensed under the GNU General Public License version 3.