feat: Request utils

This commit is contained in:
Aleksi Lassila
2024-03-31 00:25:55 +02:00
parent 26d4ba0f8f
commit 5b18c95766
13 changed files with 430 additions and 261 deletions

View File

@@ -23,8 +23,13 @@ module.exports = {
files: ['*.svelte'],
parser: 'svelte-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser'
parser: '@typescript-eslint/parser',
}
}
]
],
rules: {
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-explicit-any': 'off',
}
};