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

@agilebot/eslint-config

v0.7.3

Published

Agilebot's ESLint config

Downloads

549

Readme

@agilebot/eslint-config

npm

Usage

Manual Install

npm install --save-dev eslint \
  @agilebot/eslint-config

And create eslint.config.mjs in your project root:

// eslint.config.mjs
import { agilebot } from '@agilebot/eslint-config';

export default agilebot(import.meta);

Customization

The agilebot preset provides a streamlined way to configure your ESLint setup. Here’s how you can use it and customize it based on your needs.

Basic Usage

To get started, import the agilebot preset:

// eslint.config.mjs
import { agilebot } from '@agilebot/eslint-config';

export default agilebot(import.meta);

This will automatically apply the default configurations provided by agilebot.

Advanced Customization

If you want more control, you can customize individual integrations using the FactoryOptions interface. For example:

// eslint.config.mjs
import { agilebot } from '@agilebot/eslint-config';

export default agilebot(import.meta, {
  // Replace `.eslintignore` with the `ignores` option
  ignores: [
    '**/fixtures'
    // Add more glob patterns as needed
  ],

  // List of files or directories where development dependencies are allowed
  // Accepts glob patterns, e.g., '**/scripts/**', '**/test/**'
  devDependencies: ['**/scripts/**', '**/test/**'],

  // List of modules to be treated as built-in
  // Accepts an array of module names, e.g., ['electron']
  coreModules: ['electron'],

  // Enable React-specific linting rules
  // Accepts `true`, `false`, or a specific version string, e.g., '17.0.0'
  react: true,

  // Specify the Vue.js version for linting
  // Accepts a number, e.g., 2 or 3
  vue: 3,

  // Enable imports-related configurations
  import: true,

  // Specify the import resolver to use
  // Accepts 'typescript' or 'oxc'
  importResolver: 'typescript',

  // Enable Lodash-specific linting rules
  // Accepts `true` or `false`
  lodash: true,

  // Enable Prettier for code formatting
  // Accepts `true` or `false`
  prettier: true,

  // Enable or disable JSDoc linting rules
  // Accepts `true` or `false`
  jsdoc: false,

  // Enable ES module linting rules
  // Accepts `true` or `false`
  module: true,

  // Apply specific monorepo configurations
  // Accepts a string representing the monorepo scope, e.g., '@my-app'
  monorepoScope: '@my-app',

  // Custom spelling configurations for CSpell
  // Accepts a configuration object or `false` to disable CSpell
  cspell: {
    words: ['agilebot', 'eslint'],
    ignorePaths: ['**/node_modules']
  },

  // Enable GoDaddy-specific linting configurations
  // Accepts `true`, `false`, or 'typescript' for TypeScript-specific rules
  godaddy: 'typescript',

  // Custom ESLint configuration to override or extend defaults
  config: {
    rules: {
      'no-console': 'warn',
      'prefer-const': 'error'
    }
  }
});