Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions rules/assertion-arguments.js
Original file line number Diff line number Diff line change
Expand Up @@ -391,19 +391,20 @@
const schema = [{
type: 'object',
properties: {
message: {

Check failure on line 394 in rules/assertion-arguments.js

View workflow job for this annotation

GitHub Actions / Node.js (^18.18)

Schema option is missing an ajv description.
enum: [
'always',
'never',
],
default: undefined,

Check failure on line 399 in rules/assertion-arguments.js

View workflow job for this annotation

GitHub Actions / Node.js (^18.18)

Disallowed default value in schema.
},
},
additionalProperties: false,
}];

module.exports = {
create,
meta: {

Check failure on line 407 in rules/assertion-arguments.js

View workflow job for this annotation

GitHub Actions / Node.js (^18.18)

Rule with non-empty schema is missing a `meta.defaultOptions` property.
type: 'problem',
docs: {
description: 'Enforce passing correct arguments to assertions.',
Expand Down
1 change: 1 addition & 0 deletions rules/no-ignored-test-files.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,21 +50,22 @@
const schema = [{
type: 'object',
properties: {
extensions: {

Check failure on line 53 in rules/no-ignored-test-files.js

View workflow job for this annotation

GitHub Actions / Node.js (^18.18)

Schema option is missing an ajv description.
type: 'array',
},
files: {

Check failure on line 56 in rules/no-ignored-test-files.js

View workflow job for this annotation

GitHub Actions / Node.js (^18.18)

Schema option is missing an ajv description.
type: 'array',
},
helpers: {

Check failure on line 59 in rules/no-ignored-test-files.js

View workflow job for this annotation

GitHub Actions / Node.js (^18.18)

Schema option is missing an ajv description.
type: 'array',
},
},
additionalProperties: false,
}];

module.exports = {
create,
meta: {

Check failure on line 68 in rules/no-ignored-test-files.js

View workflow job for this annotation

GitHub Actions / Node.js (^18.18)

Rule with non-empty schema is missing a `meta.defaultOptions` property.
type: 'suggestion',
docs: {
description: 'Ensure no tests are written in ignored files.',
Expand Down
1 change: 1 addition & 0 deletions rules/no-import-test-files.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ const schema = [{
type: 'array',
},
},
additionalProperties: false,
}];

module.exports = {
Expand Down
1 change: 1 addition & 0 deletions rules/test-title-format.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ const schema = [
default: undefined,
},
},
additionalProperties: false,
},
];

Expand Down
Loading