Skip to content

Commit

Permalink
chore: fix ESLint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDeBoey committed Dec 18, 2021
1 parent 2b8d206 commit 344ec9a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/rules/no-literal-call.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const LITERAL_AND_CLASS_TYPE = /^(?:(?:Array|Class|Object)Expression|(?:Template
module.exports = {
meta: {
docs: {
description: "Disallow a call of a literal.",
description: "disallow a call of a literal.",
category: "Possible Errors",
recommended: false,
url:
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-this-in-static.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
module.exports = {
meta: {
docs: {
description: "Disallow `this`/`super` in static methods",
description: "disallow `this`/`super` in static methods",
category: "Best Practices",
url:
"https://github.com/mysticatea/eslint-plugin/blob/v13.0.0/docs/rules/no-this-in-static.md",
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-use-ignored-vars.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const DEFAULT_IGNORE_PATTERN = /^_[a-zA-Z]+$/u
module.exports = {
meta: {
docs: {
description: "Disallow a use of ignored variables.",
description: "disallow a use of ignored variables.",
category: "Stylistic Issues",
recommended: false,
url:
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-useless-rest-spread.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ function defineFixer(sourceCode, node) {
module.exports = {
meta: {
docs: {
description: "Disallow unnecessary spread operators.",
description: "disallow unnecessary spread operators.",
category: "Best Practices",
recommended: false,
url:
Expand Down

0 comments on commit 344ec9a

Please sign in to comment.