Skip to content

Commit

Permalink
fix folder naming convention
Browse files Browse the repository at this point in the history
  • Loading branch information
alan2207 committed May 23, 2024
1 parent c4933b9 commit 0ec4251
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,16 @@ module.exports = {
ignoreMiddleExtensions: true,
},
],
},
},
{
plugins: ['check-file'],
files: ['src/**/!(__tests__)/*'],
rules: {
'check-file/folder-naming-convention': [
'error',
{
'src/**/!(__tests__)': 'KEBAB_CASE',
'**/*': 'KEBAB_CASE',
},
],
},
Expand Down

0 comments on commit 0ec4251

Please sign in to comment.