Skip to content

Commit

Permalink
feat: moved ignores to antfu config
Browse files Browse the repository at this point in the history
  • Loading branch information
alvarosabu committed Oct 1, 2024
1 parent af35d2f commit d033c2e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
7 changes: 7 additions & 0 deletions src/rules/antfu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@ const antfuConfig = {
stylistic: true,
// vue: true, // autodetected by @antfu/eslint-config, no need to set a default
// typescript: true, // autodetected by @antfu/eslint-config, no need to set a default
ignores: [
'**/dist/**',
'sponsorkit/**',
'node_modules/**',
'coverage/**',
'**/public/**',
],
formatters: {
css: true,
html: true,
Expand Down
7 changes: 0 additions & 7 deletions src/rules/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,6 @@ const baseConfig = [
// General Rules
{
name: 'tres:general',
ignores: [
'**/dist/**',
'sponsorkit/**',
'node_modules/**',
'coverage/**',
'**/public/**',
],
rules: {
'curly': ['error', 'all'],
'style/function-call-spacing': ['error', 'never'],
Expand Down

0 comments on commit d033c2e

Please sign in to comment.