Skip to content

Commit 7c41af6

Browse files
committed
fix(plugins/local): update description of 'no-shadow-underscore' rule
1 parent 947b3f8 commit 7c41af6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.pkgs/eslint-plugin-local/dist/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ var no_shadow_underscore_default = createRule({
5151
meta: {
5252
type: "problem",
5353
docs: {
54-
description: "disallow multiline template expressions",
54+
description: "Disallow shadowing of the underscore identifier",
5555
[Symbol.for("rule_features")]: RULE_FEATURES2
5656
},
5757
messages: {

.pkgs/eslint-plugin-local/src/rules/no-shadow-underscore.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default createRule<[], MessageID>({
1717
meta: {
1818
type: "problem",
1919
docs: {
20-
description: "disallow multiline template expressions",
20+
description: "Disallow shadowing of the underscore identifier",
2121
[Symbol.for("rule_features")]: RULE_FEATURES,
2222
},
2323
messages: {

0 commit comments

Comments
 (0)