Skip to content

Commit 94e0e85

Browse files
committed
Delete Spaces
1 parent 137254d commit 94e0e85

File tree

71 files changed

+71
-71
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+71
-71
lines changed

lib/rules/boolean-prop-naming.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const messages = {
2222
patternMismatch: 'Prop name `{{propName}}` doesn’t match rule `{{pattern}}`',
2323
};
2424

25-
/** @type { import('eslint').Rule.RuleModule } */
25+
/** @type {import('eslint').Rule.RuleModule} */
2626
module.exports = {
2727
meta: {
2828
docs: {

lib/rules/default-props-match-prop-types.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const messages = {
2121
defaultHasNoType: 'defaultProp "{{name}}" has no corresponding propTypes declaration.',
2222
};
2323

24-
/** @type { import('eslint').Rule.RuleModule } */
24+
/** @type {import('eslint').Rule.RuleModule} */
2525
module.exports = {
2626
meta: {
2727
docs: {

lib/rules/destructuring-assignment.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const messages = {
5353
destructureInSignature: 'Must destructure props in the function signature.',
5454
};
5555

56-
/** @type { import('eslint').Rule.RuleModule } */
56+
/** @type {import('eslint').Rule.RuleModule} */
5757
module.exports = {
5858
meta: {
5959
docs: {

lib/rules/display-name.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const messages = {
2727
noContextDisplayName: 'Context definition is missing display name',
2828
};
2929

30-
/** @type { import('eslint').Rule.RuleModule } */
30+
/** @type {import('eslint').Rule.RuleModule} */
3131
module.exports = {
3232
meta: {
3333
docs: {

lib/rules/forbid-component-props.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const messages = {
2222
propIsForbidden: 'Prop "{{prop}}" is forbidden on Components',
2323
};
2424

25-
/** @type { import('eslint').Rule.RuleModule } */
25+
/** @type {import('eslint').Rule.RuleModule} */
2626
module.exports = {
2727
meta: {
2828
docs: {

lib/rules/forbid-dom-props.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const messages = {
3737
propIsForbidden: 'Prop "{{prop}}" is forbidden on DOM Nodes',
3838
};
3939

40-
/** @type { import('eslint').Rule.RuleModule } */
40+
/** @type {import('eslint').Rule.RuleModule} */
4141
module.exports = {
4242
meta: {
4343
docs: {

lib/rules/function-component-definition.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ const messages = {
113113
'arrow-function': 'Function component is not an arrow function',
114114
};
115115

116-
/** @type { import('eslint').Rule.RuleModule } */
116+
/** @type {import('eslint').Rule.RuleModule} */
117117
module.exports = {
118118
meta: {
119119
docs: {

lib/rules/iframe-missing-sandbox.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ function checkProps(context, node) {
109109
}
110110
}
111111

112-
/** @type { import('eslint').Rule.RuleModule } */
112+
/** @type {import('eslint').Rule.RuleModule} */
113113
module.exports = {
114114
meta: {
115115
docs: {

lib/rules/jsx-boolean-value.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const messages = {
5454
omitPropAndBoolean: 'Value must be omitted for `false` attribute: `{{propName}}`',
5555
};
5656

57-
/** @type { import('eslint').Rule.RuleModule } */
57+
/** @type {import('eslint').Rule.RuleModule} */
5858
module.exports = {
5959
meta: {
6060
docs: {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const messages = {
4444
spacingBeforeNext: 'Ambiguous spacing before next element {{element}}',
4545
};
4646

47-
/** @type { import('eslint').Rule.RuleModule } */
47+
/** @type {import('eslint').Rule.RuleModule} */
4848
module.exports = {
4949
meta: {
5050
docs: {

0 commit comments

Comments
 (0)