Skip to content

Commit b97e028

Browse files
Vlad Esinljharb
Vlad Esin
andauthored
Apply suggestions from code review
Co-Authored-By: Jordan Harband <[email protected]>
1 parent 4d4eea9 commit b97e028

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

lib/rules/forbid-dom-props.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const DEFAULTS = [];
1919

2020
module.exports = {
2121
meta: {
22-
type: 'suggestion',
22+
type: 'problem',
2323
docs: {
2424
description: 'Forbid certain props on DOM Nodes',
2525
category: 'Best Practices',

lib/rules/forbid-elements.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const docsUrl = require('../util/docsUrl');
1414

1515
module.exports = {
1616
meta: {
17-
type: 'suggestion',
17+
type: 'problem',
1818
docs: {
1919
description: 'Forbid certain elements',
2020
category: 'Best Practices',

lib/rules/jsx-child-element-spacing.js

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ module.exports = {
4646
recommended: false,
4747
url: docsUrl('jsx-child-element-spacing')
4848
},
49-
// fixable: null,
5049
schema: [
5150
{
5251
type: 'object',

lib/rules/static-property-placement.js

-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ module.exports = {
5656
recommended: false,
5757
url: docsUrl('static-property-placement')
5858
},
59-
// fixable: null, // or 'code' or 'whitespace'
6059
schema: [
6160
{enum: POSITION_SETTINGS},
6261
{

0 commit comments

Comments
 (0)