Skip to content

Commit 5167be9

Browse files
authored
chore: correct regex pattern for eslint-plugin/report-message-format (#323)
1 parent 61090f9 commit 5167be9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eslint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export default defineConfig([
9494
"eslint-plugin/require-meta-schema": "off", // `schema` defaults to []
9595
"eslint-plugin/prefer-placeholders": "error",
9696
"eslint-plugin/prefer-replace-text": "error",
97-
"eslint-plugin/report-message-format": ["error", "[^a-z].*\\.$"],
97+
"eslint-plugin/report-message-format": ["error", "^[^a-z].*\\.$"],
9898
"eslint-plugin/require-meta-docs-description": [
9999
"error",
100100
{ pattern: "^(Enforce|Require|Disallow) .+[^. ]$" },

0 commit comments

Comments
 (0)