New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@sealsystems/eslint-config-es

Package Overview
Dependencies
Maintainers
4
Versions
64
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sealsystems/eslint-config-es

ESLint executable and configuration for SEAL Systems

  • 3.7.10
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
17
decreased by-26.09%
Maintainers
4
Weekly downloads
 
Created
Source

@sealsystems/eslint-config-es

ESLint executable and configuration for SEAL Systems

Installation

npm install --save-dev @sealsystems/eslint-config-es

Quick start

Create a file with the name .eslintrc.json in the root directory of your project. It should contain at least the following lines:

{
  "extends": "@sealsystems/eslint-config-es"
}

ESLint is installed as a dependency of @sealsystems/eslint-config-es. So you can call eslint from the root directory of your project:

$(npm bin)/eslint **/*.js

Please note:

  • In order to install all dependencies directly in the project's node_modules folder, you may need to delete package-lock.json before adding this package.

The package also provides 3 CLI executables:

  • bot runs the following checks:

    • ESLint

    • Unit Tests by calling npm run test

    • Missing or unused dependencies (aborts the test run only if package.json does not contain a dependency)

    • Outdated dependencies (never aborts the test run)

    In case of an error, the returned status code indicates the number of the failed test

  • lint runs ESLint

  • lint-fix runs ESLint with the option --fix

Please note:

  • ESLint ignores all files and directories listed in the project's .gitignore.

To use these binaries, add some scripts to your package.json:

...
"scripts": {
  "bot": "bot",
  "lint": "lint",
  "lint:fix": "lint-fix"
}
...

And call them via npm run:

npm run bot
npm run lint
npm run lint:fix

Implementation details

Please note: This module is part of the build and release infrastructure. In order to prevent endless loops when automatically updating dependencies, Dependabot is not enabled.

FAQs

Package last updated on 05 Jun 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