Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 812 Bytes

no-extra-parens.md

File metadata and controls

32 lines (22 loc) · 812 Bytes
description
Disallow unnecessary parentheses.

🛑 This file is source code, not the primary documentation location! 🛑

See https://typescript-eslint.io/rules/no-extra-parens for documentation.

Rule Details

This rule extends the base eslint/no-extra-parens rule. It adds support for TypeScript type assertions.

How to Use

{
  // note you must disable the base rule as it can report incorrect errors
  "no-extra-parens": "off",
  "@typescript-eslint/no-extra-parens": ["error"]
}

Options

See eslint/no-extra-parens options.

Taken with ❤️ from ESLint core