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

@strv/eslint-config-typescript

Package Overview
Dependencies
Maintainers
4
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@strv/eslint-config-typescript

STRV's ESLint config for TypeScript projects

  • 5.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
525
increased by6.06%
Maintainers
4
Weekly downloads
 
Created
Source

@strv/eslint-config-typescript

Configuration for TypeScript projects.

Installation

npm install -D @strv/eslint-config-typescript

Rulesets

  • '@strv/eslint-config-typescript': A generic ruleset that focuses on code correctness
  • '@strv/eslint-config-typescript/optional': Addiitonal ruleset that might provide useful tips and hints how to improve your code
  • '@strv/eslint-config-typescript/style': Ruleset that focuses solely on code style (indentation, spacing, naming, syntax preference etc.)
  • '@strv/eslint-config-typescript/react': Ruleset that provides additional customisations for the @strv/eslint-config-react ruleset when working with TypeScript`

Usage

// eslint.config.mjs
import typescript from '@strv/eslint-config-typescript'
import optional from '@strv/eslint-config-typescript/optional'
import style from '@strv/eslint-config-typescript/style'
// Just to help us re-use the same globs multiple times
const globs = {
  js: '**/*.js',
}

/** @type {Array<import("eslint").Linter.FlatConfig>} */
const config = [
  { files: [globs.js], ...typescript },
  { files: [globs.js], ...optional },
  { files: [globs.js], ...style },
  // Any custom settings to be applied
  { files: [globs.js],
    languageOptions: { ecmaVersion: 2023 }
  },
]

export default config

License

See the LICENSE file for information.

Keywords

FAQs

Package last updated on 16 Feb 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