Peter-Win / fe-gui

0 stars 0 forks source link

Eslint says all enums in Typescript app are "already declared in the upper scope" #41

Closed Peter-Win closed 2 years ago

Peter-Win commented 2 years ago

Solution: "no-shadow": "off", "@typescript-eslint/no-shadow": ["error"] "no-useless-constructor": "off", "@typescript-eslint/no-useless-constructor": ["error"], "no-empty-function": "off", "@typescript-eslint/no-empty-function": ["error"],

is similar to no-unused-vars

Peter-Win commented 2 years ago

Done