The airbnb config enables `no-shadow` but it's not compatible with typescript and needs to be adjusted as follows: ```js { rules: { "no-shadow": "off", "@typescript-eslint/no-shadow": "error", }, } ``` ref: https://typescript-eslint.io/rules/no-shadow/
The airbnb config enables
no-shadowbut it's not compatible with typescript and needs to be adjusted as follows:ref: https://typescript-eslint.io/rules/no-shadow/