You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-13 00:10:37 +02:00
Tools: Implement @typescript-eslint/no-explicit-any rule
This commit is contained in:
@ -5,6 +5,7 @@ describe('validatePluginPlatforms', () => {
|
||||
[['mobile', 'desktop'], true],
|
||||
['not-an-array', false],
|
||||
[[3, 4, 5], false],
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
||||
])('should throw when given an invalid list of supported plugin platforms (case %#)', (platforms: any, shouldSupport) => {
|
||||
const callback = () => validatePluginPlatforms(platforms);
|
||||
if (shouldSupport) {
|
||||
|
Reference in New Issue
Block a user