Skip to content

Commit

Permalink
remove schema changes
Browse files Browse the repository at this point in the history
  • Loading branch information
bmish committed Oct 16, 2021
1 parent 0fcc4ee commit 6275be9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 16 deletions.
1 change: 1 addition & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
}],

"eslint-plugin/consistent-output": 0,
"eslint-plugin/require-meta-schema": 0,
"eslint-plugin/require-meta-type": 0
},
"overrides": [
Expand Down
4 changes: 2 additions & 2 deletions lib/rules/jsx-closing-tag-location.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ module.exports = {
url: docsUrl('jsx-closing-tag-location')
},
fixable: 'whitespace',
messages,
schema: []

messages
},

create(context) {
Expand Down
3 changes: 1 addition & 2 deletions lib/rules/jsx-no-constructed-context-values.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,7 @@ module.exports = {
recommended: false,
url: docsUrl('jsx-no-constructed-context-values')
},
messages,
schema: []
messages
},

create(context) {
Expand Down
13 changes: 1 addition & 12 deletions lib/rules/jsx-no-useless-fragment.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,18 +93,7 @@ module.exports = {
recommended: false,
url: docsUrl('jsx-no-useless-fragment')
},
messages,
schema: [
{
type: 'object',
properties: {
allowExpressions: {
type: 'boolean'
}
},
additionalProperties: false
}
]
messages
},

create(context) {
Expand Down

0 comments on commit 6275be9

Please sign in to comment.