tessl install tessl/npm-eslint-plugin-import-x@3.1.0ESLint plugin providing comprehensive linting rules for ES2015+ import/export syntax with static analysis and module system enforcement.
Agent Success
Agent success rate when using this tile
80%
Improvement
Agent success rate improvement when using this tile compared to baseline
0.96x
Baseline
Agent success rate without this tile
83%
Create a lint helper that blocks consumption of exports documented with @deprecated JSDoc tags while letting current APIs pass.
@deprecated reason, running lintFiles on a consumer that imports that name returns an error mentioning the identifier and the deprecation reason. @test@deprecated, lintFiles run on a file importing that default reports an error tied to the default import location. @testlintFiles returns two distinct errors with source locations matching each import statement. @testlintFiles. @test@generates
export async function lintFiles(paths: string[]): Promise<
{ filePath: string; errors: { message: string; line: number; column: number }[] }[]
>;Enforces import hygiene and detects usage of exports documented as deprecated.