Socket
Socket
Sign inDemoInstall

@enormora/eslint-config-node

Package Overview
Dependencies
108
Maintainers
2
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @enormora/eslint-config-node

Enormora’s ESLint node.js configuration


Version published
Maintainers
2
Install size
2.28 MB
Created

Readme

Source

@enormora/eslint-config-node

Config preset for node.js, enabling specific rules and configures global variables.

Install & Setup

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

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

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 { nodeConfig } from '@enormora/eslint-config-node';

export default [
    {
        ignores: ['dist/**/*']
    },
    baseConfig,
    {
        ...nodeConfig,
        files: ['src/server/**/*.js']
    }
];

Additional presets for specific scenarios:

  • nodeConfigFileConfig: settings for config files
  • nodeEntryPointFileConfig: settings for entry point files, which allows e.g. the usage of environment variables

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