Skip to content

Commit

Permalink
chore: add empty meta.schema to no-option rules
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcC399 committed Apr 24, 2024
1 parent 404387a commit 9285c94
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion .eslintrc.json
Expand Up @@ -15,7 +15,6 @@
"plugin:mocha/recommended"
],
"rules": {
"eslint-plugin/require-meta-schema": "off",
"n/no-extraneous-require": [
"error",
{
Expand Down
1 change: 1 addition & 0 deletions lib/rules/no-async-before.js
Expand Up @@ -8,6 +8,7 @@ module.exports = {
category: 'Possible Errors',
recommended: true,
},
schema: [],
messages: {
unexpected: 'Avoid using async functions with Cypress before / beforeEach functions',
},
Expand Down
1 change: 1 addition & 0 deletions lib/rules/no-async-tests.js
Expand Up @@ -8,6 +8,7 @@ module.exports = {
category: 'Possible Errors',
recommended: true,
},
schema: [],
messages: {
unexpected: 'Avoid using async functions with Cypress tests',
},
Expand Down

0 comments on commit 9285c94

Please sign in to comment.