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

@fluidframework/eslint-config-fluid

v5.3.0

Published

Shareable ESLint config for the Fluid Framework

Downloads

7,838

Readme

@fluidframework/eslint-config-fluid

This package contains a shared ESLint config used by all the packages in the Fluid Framework repo.

It exports the following shared ESLint configs:

Configurations

Recommended

This is the standard config for use in Fluid Framework libraries. It is also the default library export.

This configuration is recommended for all libraries in the repository, though use of the strict config is preferred whenever reasonable.

Imported via @fluidframework/eslint-config-fluid (or @fluidframework/eslint-config-fluid/recommended).

Strict

The strictest config for use in Fluid Framework libraries. Recommended for highest code quality enforcement.

In particular, use of this config is encouraged for libraries with public facing APIs, and those used as external-facing examples (e.g. those mentioned on fluidframework.com).

Imported via @fluidframework/eslint-config-fluid/strict.

Changing the lint config

If you want to change the shared lint config (that is, this package), you need to do the following:

  1. Make the change in the config.
  2. Publish a pre-release package.
  3. Update the core packages to use the pre-release lint config.

When updating the lint config (step 1), run npm run build and commit any resulting changes.

Tracking lint config changes over time

One question that comes up often when we make changes to our lint config is, "what changed?" This applies even when we don't make any changes other than upgrading deps, because the dependency upgrade might include a new rule.

ESLint provides a way to print the config that would apply to a file (--print-config), so we use this capability to print out the applied config as a JSON file. As we make changes to the config, we can print out the config again and get a diff to review as part of a PR -- just like we do with API reports for code changes.

Scripts

| Script | Description | |--------|-------------| | build | npm run print-config | | build:readme | markdown-magic --files "**/*.md" | | cleanup-printed-configs | Clean up the printed configs. Removes the parser property and sorts the JSON. | | format | npm run prettier:fix | | prettier | prettier --check . | | prettier:fix | prettier --write . | | print-config | Print all the eslint configs. | | print-config:default | Print the eslint config for regular TypeScript files (eslint --config index.js --print-config src/file.ts). | | print-config:minimal | eslint --config ./minimal-deprecated.js --print-config ./src/file.ts > ./printed-configs/minimal.json | | print-config:react | eslint --config ./index.js --print-config ./src/file.tsx > ./printed-configs/react.json | | print-config:recommended | eslint --config ./recommended.js --print-config ./src/file.ts > ./printed-configs/recommended.json | | print-config:strict | eslint --config ./strict.js --print-config ./src/file.ts > ./printed-configs/strict.json | | print-config:test | Print the eslint config for test files (eslint --config index.js --print-config src/test/file.ts). | | test | echo TODO: add tests in @fluidframework/eslint-config-fluid |

See GitHub for more details on the Fluid Framework and packages within.