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%
Builds ESLint configuration outputs that rely on the package's bundled presets for both legacy .eslintrc and flat config formats, letting teams toggle strictness and environment flavors without re-declaring rule lists.
extends stack starts with the package's recommended preset and layers optional strict/error emphasis and environment presets without duplicating entries. @testwarningsOnly flag switches the chosen package preset from strict/errors to the warnings-focused preset while preserving applied environment presets across both legacy and flat outputs. @test@generates
export type Mode = 'legacy' | 'flat';
export interface ConfigOptions {
mode: Mode;
typescript?: boolean;
react?: boolean;
warningsOnly?: boolean;
}
export function buildConfig(options: ConfigOptions): object;Provides the package presets for legacy .eslintrc and flat config formats that power the assembled configurations.
@satisfied-by