We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Destructuring is a warning in all parameters.
{ "rules": { "destructuring/in-params": ["warn", { "max-params": 0 }] } }
This doesn't show a warning:
const createConnectMiddleware = <TArgs extends readonly unknown[]>( id: string, factory: (...args: TArgs) => (req: IncomingMessage, res: ServerResponse, next: (error?: unknown) => void) => void, { timeoutSeconds = 3 }: MiddlewareConnectOptions = {}, ): MiddlewareFactory<TArgs> => { ... }
This does show a warning:
const createConnectMiddleware = <TArgs extends readonly unknown[]>( id: string, factory: (...args: TArgs) => (req: IncomingMessage, res: ServerResponse, next: (error?: unknown) => void) => void, { timeoutSeconds = 3 }: MiddlewareConnectOptions, ): MiddlewareFactory<TArgs> => { ... }
Difference:
{ timeoutSeconds = 3 }: MiddlewareConnectOptions = {}, { timeoutSeconds = 3 }: MiddlewareConnectOptions
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Destructuring is a warning in all parameters.
This doesn't show a warning:
This does show a warning:
Difference:
The text was updated successfully, but these errors were encountered: