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

eslint-config-wantedly

Package Overview
Dependencies
Maintainers
0
Versions
107
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-wantedly

ESLint configuration for Wantedly

  • 4.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3.8K
decreased by-24.17%
Maintainers
0
Weekly downloads
 
Created
Source

eslint-config-wantedly npm version

ESLint config for Wantedly. It focuses the JavaScript linting.

Version Compatibilities

If you're using ESLint v8 and under, please use eslint-config-wantedly version 3.x. As of eslint-config-wantedly version 4.0, it has started exporting ESLint's flat config format.

Usage (version 4.0 and above)

It exports configurations as "Flat config".

import { base as configWantedly } from "eslint-config-wantedly";

export default [
  ...configWantedly,
  {
    rules: {
      // Your rules go here.
    }
  }
];

Usage (version 3.x and under)

It exports configurations as "Legacy" format.

{
  "extends": ["wantedly"],
  "rules": {
    // Your rules go here.
  }
}

Configuration details

Parser

Using @babel/eslint-parser

Extends

Plugins

Rules

See index.js

Keywords

FAQs

Package last updated on 25 Sep 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