Skip to content

Commit

Permalink
feat: added ignores and turn off style/max-statements-per-line rule
Browse files Browse the repository at this point in the history
  • Loading branch information
alvarosabu committed Oct 1, 2024
1 parent d0ea243 commit a87f92d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/rules/base.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
const baseConfig = [

// General Rules
{
name: 'tres:general',
ignores: [
'**/dist/**',
'sponsorkit/**',
'node_modules/**',
'coverage/**',
'**/public/**'

Check failure on line 10 in src/rules/base.ts

View workflow job for this annotation

GitHub Actions / Lint (20)

Missing trailing comma
],
rules: {
'curly': ['error', 'all'],
'style/function-call-spacing': ['error', 'never'],
'node/prefer-global/process': 'off',
'antfu/top-level-function': 'off',
'perfectionist/sort-imports': 'off',
'style/max-statements-per-line': 'off',
},
},

Expand Down

0 comments on commit a87f92d

Please sign in to comment.