Skip to content

Commit

Permalink
fix(eslint): disable not needed rules
Browse files Browse the repository at this point in the history
  • Loading branch information
DrJume committed Jun 28, 2024
1 parent 79f8f35 commit dd2f826
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/eslint-config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,15 @@ export function eslintConfig({ nuxt = false, tsconfigPath, unicorn = false, conf
ignore: [/^README\./],
},
],
'unicorn/prevent-abbreviations': 'off',
'unicorn/no-null': 'off',
'unicorn/no-array-callback-reference': 'off',
'unicorn/prefer-ternary': 'off',
},
},
{
name: 'falcondev/unicorn/ignore',
files: ['.github/**/*'],
files: ['.github/**/*', 'prisma/migrations/**/*'],
rules: {
'unicorn/filename-case': 'off',
},
Expand Down

0 comments on commit dd2f826

Please sign in to comment.