Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ddadaal/eslint-config

Package Overview
Dependencies
Maintainers
0
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ddadaal/eslint-config

My eslint config

  • 2.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

@ddadaal/eslint-config

My eslint config.

Since v2.0, only eslint v9 is supported. Please stick to v1 if you cannot upgrade to eslint v9 yet.

Installation

Normal TypeScript Project

npm install -D @ddadaal/eslint-config eslint

Then create eslint.config.js with the following content:

const base = require("@ddadaal/eslint-config");

module.exports = [
    ...base,
]

React

First, set up the project as a normal TypeScript project, and then

# Install more packages
npm install -D eslint eslint-plugin-react
const base = require("@ddadaal/eslint-config");
// Add
const react = require("@ddadaal/eslint-config/react");

module.exports = [
    ...base,
    // Add
    ...react
]

License

MIT

Keywords

FAQs

Package last updated on 06 Jul 2024

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc