Skip to content

Commit

Permalink
Closes #321
Browse files Browse the repository at this point in the history
  • Loading branch information
mawoka-myblock committed Dec 20, 2023
1 parent 6571fff commit c7b148d
Show file tree
Hide file tree
Showing 3 changed files with 332 additions and 220 deletions.
10 changes: 9 additions & 1 deletion frontend/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,15 @@ module.exports = {
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier'],
plugins: ['svelte3', '@typescript-eslint'],
ignorePatterns: ['*.cjs'],
overrides: [{ files: ['*.svelte'], processor: 'svelte3/svelte3' }],
overrides: [
{ files: ['*.svelte'], processor: 'svelte3/svelte3' },
{
files: ['*.*'],
rules: {
'a11y-click-events-have-key-events': 'off'
}
}
],
rules: {
'no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }]
Expand Down
Loading

0 comments on commit c7b148d

Please sign in to comment.