Skip to content

Commit 8adffb3

Browse files
author
Vlad Esin
authored
Apply suggestions from code review
1 parent b97e028 commit 8adffb3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/rules/forbid-component-props.js

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

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

lib/rules/no-typos.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ const LIFECYCLE_METHODS = [
3333

3434
module.exports = {
3535
meta: {
36-
type: 'suggestion',
36+
type: 'problem',
3737
docs: {
3838
description: 'Prevent common typos',
39-
category: 'Stylistic Issues',
39+
category: 'Possible Errors',
4040
recommended: false,
4141
url: docsUrl('no-typos')
4242
},

0 commit comments

Comments
 (0)