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

eslint-config-wantedly-typescript

Package Overview
Dependencies
Maintainers
0
Versions
111
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-wantedly-typescript

ESLint configuration for Wantedly with TypeScript

  • 4.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

eslint-config-wantedly-typescript npm version

ESLint config for Wantedly. It focuses the TypeScript linting.

Version Compatibilities

If you're using ESLint v8 and under, please use eslint-config-wantedly-typescript version 3.x. As of eslint-config-wantedly-typescript 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 configWantedlyTS } from "eslint-config-wantedly-typescript";

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

Usage (version 3.x and under)

It exports configurations as "Legacy" format.

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

Configuration details

Parser

Using @typescript-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