Socket
Socket
Sign inDemoInstall

@enormora/eslint-config-ava

Package Overview
Dependencies
1
Maintainers
2
Versions
13
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @enormora/eslint-config-ava

Enormora’s ESLint ava configuration


Version published
Weekly downloads
113
decreased by-59.5%
Maintainers
2
Install size
2.51 MB
Created
Weekly downloads
 

Readme

Source

@enormora/eslint-config-ava

Config preset for ava, enabling specific rules.

Install & Setup

Install the @enormora/eslint-config-ava and the base preset package via npm:

npm install --save-dev @enormora/eslint-config-base @enormora/eslint-config-ava

Create an ESLint configuration file (e.g., eslint.config.js) in your project and add the base and node config to the configuration array:

import { baseConfig } from '@enormora/eslint-config-base';
import { avaConfig } from '@enormora/eslint-config-ava';

export default [
    {
        ignores: ['dist/**/*']
    },
    baseConfig,
    {
        ...avaConfig,
        files: ['**/*.test.js']
    }
];

FAQs

Last updated on 05 Feb 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc