Skip to content

Instantly share code, notes, and snippets.

@qubyte
Created March 26, 2020 10:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save qubyte/ccc42238b55bd3b55ece158f9ffcbaa4 to your computer and use it in GitHub Desktop.
Save qubyte/ccc42238b55bd3b55ece158f9ffcbaa4 to your computer and use it in GitHub Desktop.
Disallow .only in mocha test files.
{
"env": {
"mocha": true
},
"rules": {
"max-nested-callbacks": ["error", 7],
"no-restricted-properties": [
"error",
{ "object": "describe", "property": "only" },
{ "object": "context", "property": "only" },
{ "object": "it", "property": "only" }
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment