Skip to content

Commit

Permalink
chore: linting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Rath committed May 28, 2022
1 parent f16a3d0 commit b40c4d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rules/__tests__/valid-title.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -204,13 +204,13 @@ ruleTester.run('mustMatch & mustNotMatch options', rule, {
});
});
`,
parserOptions: { sourceType: 'module' },
options: [
{
mustNotMatch: /(?:#(?!unit|e2e))\w+/u.source,
mustMatch: /^[^#]+$|(?:#(?:unit|e2e))/u.source,
},
],
parserOptions: { sourceType: 'module' },
errors: [
{
messageId: 'mustNotMatch',
Expand Down

0 comments on commit b40c4d6

Please sign in to comment.