ESLint plugin providing custom rules for JavaScript Standard Style linting
Overall
score
36%
Evaluation — 36%
↓ 0.58xAgent success when using this tile
Build a lint helper that uses the target spacing plugin to ensure even spacing around braces and brackets in destructuring patterns, named import/export specifiers, and computed property definitions. Spacing is considered correct when the opening and closing tokens on the same line have matching whitespace (either none or a single space).
@generates
/**
* Lints the provided source text, enforcing even spacing around braces/brackets
* in destructuring patterns, named import/export specifiers, and computed property definitions.
* Returns an object with an ok flag and a list of human-readable lint error messages.
*/
async function lintSpacing(sourceText) {}Provides linting rules for even spacing around braces/brackets in destructuring, import/export specifiers, and computed property definitions. @satisfied-by