Skip to content

Commit

Permalink
chore: . disable no-inner-declarations rule for svelte files
Browse files Browse the repository at this point in the history
The svelte files have a lot of functions for now. I'm not sure whether moving them out would be good, so I propose to just disable the rule for now.
  • Loading branch information
ilandikov committed Mar 17, 2024
1 parent 1fc4ab9 commit dbc6ff9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ module.exports = {
parserOptions: {
parser: '@typescript-eslint/parser',
},
rules: {
'no-inner-declarations': 0,
},
},
],
};

0 comments on commit dbc6ff9

Please sign in to comment.