Skip to content

Commit 6275be9

Browse files
committed
remove schema changes
1 parent 0fcc4ee commit 6275be9

4 files changed

+5
-16
lines changed

.eslintrc

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
}],
4545

4646
"eslint-plugin/consistent-output": 0,
47+
"eslint-plugin/require-meta-schema": 0,
4748
"eslint-plugin/require-meta-type": 0
4849
},
4950
"overrides": [

lib/rules/jsx-closing-tag-location.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ module.exports = {
2727
url: docsUrl('jsx-closing-tag-location')
2828
},
2929
fixable: 'whitespace',
30-
messages,
31-
schema: []
30+
31+
messages
3232
},
3333

3434
create(context) {

lib/rules/jsx-no-constructed-context-values.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,7 @@ module.exports = {
136136
recommended: false,
137137
url: docsUrl('jsx-no-constructed-context-values')
138138
},
139-
messages,
140-
schema: []
139+
messages
141140
},
142141

143142
create(context) {

lib/rules/jsx-no-useless-fragment.js

+1-12
Original file line numberDiff line numberDiff line change
@@ -93,18 +93,7 @@ module.exports = {
9393
recommended: false,
9494
url: docsUrl('jsx-no-useless-fragment')
9595
},
96-
messages,
97-
schema: [
98-
{
99-
type: 'object',
100-
properties: {
101-
allowExpressions: {
102-
type: 'boolean'
103-
}
104-
},
105-
additionalProperties: false
106-
}
107-
]
96+
messages
10897
},
10998

11099
create(context) {

0 commit comments

Comments
 (0)