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

@limetech/eslint-config

Package Overview
Dependencies
Maintainers
4
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@limetech/eslint-config

Reusable lint rules for use in other packages.

  • 2.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
4
Created
Source

Lime Frontend Lint

Reusable lint rules for use in other packages.

Installation

Install using npm:

npm i -D @limetech/eslint-config

Then put a file called .eslintrc.js in your package root, with the following content:

/* eslint-env node */
module.exports = {
    extends: ['@limetech/eslint-config'],
};

Then either copy the file at node_modules/@limetech/eslint-config/.prettierrc to your package root, or create a symlink called .prettierrc in the package root, pointing to node_modules/@limetech/eslint-config/.prettierrc.

Finally, add a script for running eslint to your package.json, for example:

{"scripts": {
    "lint": "eslint \"**/*.{ts,tsx,js}\" --max-warnings=0",
    "lint:fix": "eslint \"**/*.{ts,tsx,js}\" --fix --max-warnings=0"
  },
}

You can then use npm run lint in your CI workflows, as it will fail on any warnings or errors. On your own machine, you would typically run npm run lint:fix instead, to have eslint automatically fix as many of the problems as possible, and only output warnings or errors for problems that cannot be fixed automatically.

Keywords

FAQs

Package last updated on 15 Nov 2023

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