Skip to content

Commit

Permalink
fix: allow pascal case file names
Browse files Browse the repository at this point in the history
  • Loading branch information
RebeccaStevens committed Apr 1, 2023
1 parent 9c03cc7 commit 2f2cebd
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/plugins/unicorn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,15 @@ export const settings: Linter.Config = {
},
},
],
"unicorn/filename-case": [
"error",
{
cases: {
kebabCase: true,
pascalCase: true,
},
},
],
// "eslint-comments/no-unlimited-disable" covers this.
"unicorn/no-abusive-eslint-disable": "off",
"unicorn/no-array-callback-reference": "off",
Expand Down

0 comments on commit 2f2cebd

Please sign in to comment.