I have created .eslintrc.yml file and added some rules. Now I want to modify it so that it should allow extra parenthesis but it doesn’t work
here are some different ways I tried to solve this issue:
'@typescript-eslint/no-extra-parens': 0
and
'@typescript-eslint/no-extra-parens': 'off'
Configuration File data
env:
node: true
extends:
- plugin:@typescript-eslint/recommended
- prettier
- plugin:prettier/recommended
parser: '@typescript-eslint/parser'
plugins:
- '@typescript-eslint'
rules:
'@typescript-eslint/ban-ts-comment': 'off'
'@typescript-eslint/no-explicit-any': 'off'
'@typescript-eslint/no-extra-parens': 0