🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

eslint-config-ts-guard

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-ts-guard

ESLint configuration files (shareable configs) to guard from problems in different areas of JavaScript and TypeScript development.

1.6.0
latest
Source
npm
Version published
Maintainers
1
Created
Source

eslint-config-ts-guard

Set of configuration files (shareable configs) for ESLint to guard/protect from problems in different areas of JavaScript and TypeScript development.

Extends eslint-config-guard.

Includes:

  • ts-guard - configuration for TypeScript-related rules; extends guard/optimum-next and plugin:@typescript-eslint/recommended;
  • ts-guard/ext - configuration for TypeScript-related type-aware rules; extends ts-guard and plugin:@typescript-eslint/recommended-requiring-type-checking; to use the configuration you should specify parserOptions.project in ESLint config file (see details).
  • ts-guard/test - appropriate for use in tests (relaxes some rules from other configs); extends guard/test;
  • ts-guard/test-jest - appropriate for use in Jest tests; extends ts-guard/test and guard/test-jest;
  • ts-guard/test-mocha - appropriate for use in Mocha tests; extends ts-guard/test and guard/test-mocha.

The following files re-export corresponding configs from eslint-config-guard:

Installation

Besides eslint-config-ts-guard you should install @typescript-eslint/eslint-plugin:

npm install eslint-config-ts-guard @typescript-eslint/eslint-plugin --save-dev

If you are going to use ts-guard/node you should install eslint-plugin-node:

npm install eslint-plugin-node --save-dev

If you are going to use ts-guard/proper-arrows you should install @getify/eslint-plugin-proper-arrows:

npm install @getify/eslint-plugin-proper-arrows --save-dev

If you are going to use ts-guard/react you should install eslint-plugin-react:

npm install eslint-plugin-react --save-dev

Usage

In a .eslintrc.json file:

{
    "extends": [
        "ts-guard",
        "ts-guard/node"
    ]
}

In a package.json:

{
    "eslintConfig": {
        "extends": [
            "ts-guard/ext",
            "ts-guard/proper-arrows",
            "ts-guard/react"
        ]
    }
}

License

Copyright (c) 2020-2021 Denis Sikuler
Licensed under the MIT license.

Keywords

eslint

FAQs

Package last updated on 13 Oct 2021

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