all
config.
🔧 This rule is automatically fixable by the --fix
CLI option.
Examples of incorrect code for this rule:
test('It works', () => {
// ...
})
Examples of correct code for this rule:
test('it works', () => {
// ...
})
{
"type":"object",
"properties":{
"ignore":{
"type":"array",
"items":{
"enum":[
"describe",
"test",
"it"
]
},
"additionalProperties":false
},
"allowedPrefixes":{
"type":"array",
"items":{
"type":"string"
},
"additionalItems":false
},
"ignoreTopLevelDescribe":{
"type":"boolean",
"default":false
},
"lowercaseFirstCharacterOnly":{
"type":"boolean",
"default":true
}
},
"additionalProperties":false
}