Skip to content

Instantly share code, notes, and snippets.

@43081j
Created June 28, 2021 07:29
Show Gist options
  • Save 43081j/62854e3f17c811fb0bd8206d56fb9125 to your computer and use it in GitHub Desktop.
Save 43081j/62854e3f17c811fb0bd8206d56fb9125 to your computer and use it in GitHub Desktop.
Disallow `it.only` via ESLint
{
"rules": {
"no-restricted-syntax": [
"error",
{
"selector": "CallExpression[callee.object.type='Identifier'][callee.object.name='it'][callee.property.type='Identifier'][callee.property.name='only']",
"message": "it.only is only allowed during development"
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment