Skip to content

Commit b834865

Browse files
committed
chore: fix ESLint errors
1 parent 1b33d69 commit b834865

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/rules/no-literal-call.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const LITERAL_AND_CLASS_TYPE = /^(?:(?:Array|Class|Object)Expression|(?:Template
1818
module.exports = {
1919
meta: {
2020
docs: {
21-
description: "Disallow a call of a literal.",
21+
description: "disallow a call of a literal.",
2222
category: "Possible Errors",
2323
recommended: false,
2424
url:

lib/rules/no-this-in-static.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
module.exports = {
1313
meta: {
1414
docs: {
15-
description: "Disallow `this`/`super` in static methods",
15+
description: "disallow `this`/`super` in static methods",
1616
category: "Best Practices",
1717
url:
1818
"https://github.com/eslint-community/eslint-plugin-mysticatea/blob/HEAD/docs/rules/no-this-in-static.md",

lib/rules/no-use-ignored-vars.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const DEFAULT_IGNORE_PATTERN = /^_[a-zA-Z]+$/u
1717
module.exports = {
1818
meta: {
1919
docs: {
20-
description: "Disallow a use of ignored variables.",
20+
description: "disallow a use of ignored variables.",
2121
category: "Stylistic Issues",
2222
recommended: false,
2323
url:

lib/rules/no-useless-rest-spread.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ function defineFixer(sourceCode, node) {
9494
module.exports = {
9595
meta: {
9696
docs: {
97-
description: "Disallow unnecessary spread operators.",
97+
description: "disallow unnecessary spread operators.",
9898
category: "Best Practices",
9999
recommended: false,
100100
url:

0 commit comments

Comments
 (0)