Socket
Socket
Sign inDemoInstall

@limetech/eslint-config

Package Overview
Dependencies
2
Maintainers
4
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @limetech/eslint-config

Reusable lint rules for use in other packages.


Version published
Weekly downloads
9
increased by28.57%
Maintainers
4
Created
Weekly downloads
 

Changelog

Source

2.0.2 (2023-11-15)

Bug Fixes

  • .eslintrc.js: remove some test-related rules that was copied from lime-elements (6315b4a)

Readme

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

Last updated on 15 Nov 2023

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