We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 210865e commit 7cec124Copy full SHA for 7cec124
lib/rules/jsx-closing-tag-location.js
@@ -27,8 +27,8 @@ module.exports = {
27
url: docsUrl('jsx-closing-tag-location')
28
},
29
fixable: 'whitespace',
30
-
31
- messages
+ messages,
+ schema: []
32
33
34
create(context) {
lib/rules/jsx-no-useless-fragment.js
@@ -93,7 +93,18 @@ module.exports = {
93
recommended: false,
94
url: docsUrl('jsx-no-useless-fragment')
95
96
97
+ schema: [
98
+ {
99
+ type: 'object',
100
+ properties: {
101
+ allowExpressions: {
102
+ type: 'boolean'
103
+ }
104
+ },
105
+ additionalProperties: false
106
107
+ ]
108
109
110
0 commit comments