Skip to content

Commit 7a74a7b

Browse files
Chore: Prohibit small letters as the first character of report messages
1 parent 2bd6cba commit 7a74a7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.eslintrc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ module.exports = {
2323
root: true,
2424
rules: {
2525
'require-jsdoc': 'error',
26-
'eslint-plugin/report-message-format': ['error', '^[A-Z].*\\.$'],
26+
'eslint-plugin/report-message-format': ['error', '^[^a-z].*\\.$'],
2727
},
2828
};

0 commit comments

Comments
 (0)