--- ruleName: triple-equals description: Requires `===` and `!==` in place of `==` and `!=`. optionsDescription: |- Two arguments may be optionally provided: * `"allow-null-check"` allows `==` and `!=` when comparing to `null`. * `"allow-undefined-check"` allows `==` and `!=` when comparing to `undefined`. options: type: array items: type: string enum: - allow-null-check - allow-undefined-check minLength: 0 maxLength: 2 optionExamples: - 'true' - '[true, "allow-null-check"]' - '[true, "allow-undefined-check"]' type: functionality optionsJSON: |- { "type": "array", "items": { "type": "string", "enum": [ "allow-null-check", "allow-undefined-check" ] }, "minLength": 0, "maxLength": 2 } layout: rule title: 'Rule: triple-equals' ---