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

@arianrhodsandlot/eslint-config

v0.14.0

Published

A set of predefined ESLint config.

Downloads

748

Readme

ESLint Config

npm

A set of predefined ESLint config.

Usage

To use this package, ESLint should be configured by an file named eslint.config.js, since we are using ESLint's flat config.

  • Basic usage:

    export { config as default } from '@arianrhodsandlot/eslint-config'

    or

    export { default } from '@arianrhodsandlot/eslint-config'
  • For CommonJS environment:

    module.exports = require('@arianrhodsandlot/eslint-config').config
  • Advanced usage:

    • Use the more powerful function createConfig
      • createConfig is a smart function that can detect should TS rules be enabled or which libraries-related plugins/rules should be + added:

        import { createConfig } from '@arianrhodsandlot/eslint-config'
        
        export default createConfig()
      • Since flat config is actually an array, we can append more config items to it:

        import { createConfig } from '@arianrhodsandlot/eslint-config'
        
        export default createConfig({
          append: {
            files: ['**/*.html'],
            plugins: {
              html: eslintHtmlPlugin,
            },
            rules: eslintHtmlPlugin.configs.recommended.rules,
          },
          prepend: {
            ignore: ['build/**/*']
          },
        })
      • Additional plugins/rules can be explictly enabled or disabled:

        import { createConfig } from '@arianrhodsandlot/eslint-config'
        
        export default createConfig({
          markdown: false,
          next: true,
          prettier: false,
          react: true,
          rules: {
            eqeqeq: 'off',
          },
        })

        The full list of options are listed below.

        export interface CreateConfigOptions {
          /** Append custom flat configs to default */
          append?: FlatConfig | FlatConfigs
        
          /** Should eslint-plugin-compat be enabled */
          compat?: boolean
        
          /** Should eslint-plugin-diff be enabled */
          diff?: boolean
        
          /** Should eslint-plugin-eslint-comments be enabled */
          eslintComments?: boolean
        
          /** Should eslint-plugin-import be enabled */
          import?: boolean
        
          /** Should eslint-plugin-jsdoc be enabled */
          jsdoc?: boolean
        
          /** Should eslint-plugin-markdown be enabled */
          markdown?: boolean
        
          /** Should eslint-plugin-n be enabled */
          n?: boolean
        
          /** Should \@next/eslint-plugin-next be enabled */
          next?: boolean
        
          /** Should eslint-plugin-perfectionist be enabled */
          perfectionist?: boolean
        
          /** Append custom flat configs to default */
          prepend?: FlatConfig | FlatConfigs
        
          /** Should eslint-plugin-prettier be enabled */
          prettier?: boolean
        
          /** Should eslint-plugin-promise be enabled */
          promise?: boolean
        
          /** Should eslint-plugin-react, eslint-plugin-jsx-a11y, eslint-plugin-react-hooks, eslint-plugin-react-refresh be enabled */
          react?: boolean
        
          /** Should eslint-plugin-regexp be enabled */
          regexp?: boolean
        
          /** Custom rules */
          rules?: FlatConfigRules
        
          /** Should eslint-plugin-security be enabled */
          security?: boolean
        
          /** Should eslint-plugin-sonarjs be enabled */
          sonarjs?: boolean
        
          /** Should eslint-plugin-tsdoc be enabled */
          tsdoc?: boolean
        
          /** Should \@typescript-eslint/eslint-plugin be enabled */
          typescript?: boolean
        
          /** Should eslint-plugin-unicorn be enabled */
          unicorn?: boolean
        
          /** Should eslint-plugin-vue, eslint-plugin-vuejs-accessibility, eslint-plugin-vue-scoped-css be enabled */
          vue?: boolean
        }

Features

License

MIT