diff --git a/lib/rules/no-assert-equal.js b/lib/rules/no-assert-equal.js index 0b00363d..401119db 100644 --- a/lib/rules/no-assert-equal.js +++ b/lib/rules/no-assert-equal.js @@ -22,8 +22,7 @@ module.exports = { docs: { description: "disallow the use of assert.equal", category: "Best Practices", - url: "https://github.com/platinumazure/eslint-plugin-qunit/blob/master/docs/rules/no-assert-equal.md", - suggestion: true + url: "https://github.com/platinumazure/eslint-plugin-qunit/blob/master/docs/rules/no-assert-equal.md" }, messages: { unexpectedGlobalEqual: "Unexpected equal. Use strictEqual, deepEqual, or propEqual.", @@ -32,7 +31,8 @@ module.exports = { switchToPropEqual: "Switch to propEqual.", switchToStrictEqual: "Switch to strictEqual." }, - schema: [] + schema: [], + hasSuggestions: true }, create: function (context) {