Skip to content

Commit

Permalink
fix(eslint-config): fix ignored files
Browse files Browse the repository at this point in the history
  • Loading branch information
clementprevot committed Nov 29, 2024
1 parent 666bb14 commit 844651a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/eslint-snowball-config/configs/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,22 @@ import variables from './variables.js'
export default [
{
ignores: [
'!**/.*.{js,mjs,cjs,jsx,ts,mts,tsx}',
'!./.*.{js,mjs,cjs,jsx,ts,mts,tsx}',
'!**/.github',
'!**/.storybook',
'!**/.vscode',
'**/*.min.{js,mjs,cjs,jsx,ts,mts,tsx}',
'**/.yarn/*',
'**/*.pnp.*',
'**/.next/*',
'**/dist/*',
'**/build/*',
'**/out/*',
'**/storybook-static/*',
'**/styled-system/*',
'**/coverage/*',
'**/node_modules/*',
'**/translations/*.{json,json5,jsonc}',
],
},

Expand Down

0 comments on commit 844651a

Please sign in to comment.