0.0.3-beta.48 (2020-10-01)
- A
no-internal
rule has been added. - The
deprecation
rule has been deprecated and renamed tono-deprecated
. - The
ban-imports
rule has been deprecated in favour of the built-in ESLint ruleno-restricted-imports
. - The deprecated rules will be removed when the beta ends.
0.0.3-beta.46 (2020-09-25)
- Removed the
no-unused-declarations
rule. Now that the official TypeScript ESLint plugin has a proper implementation ofno-unused-vars
,no-unused-declaration
is pretty much redundant and I would prefer not to support it. If anyone needs to differentiate between vars and imports, theeslint-plugin-unused-imports
plugin includesno-unused-vars-ts
andno-unused-imports-ts
rules - and the latter has a fixer.