feat: add initial skeleton for authentication in sveltekit with pocketbase

This commit is contained in:
Bart van der Braak 2024-01-28 22:21:47 +01:00
parent 69ccab8129
commit 88884a69ac
30 changed files with 682 additions and 197 deletions

View file

@ -27,5 +27,11 @@ module.exports = {
parser: '@typescript-eslint/parser'
}
}
]
],
rules: {
'@typescript-eslint/no-unused-vars': [
'warn',
{ varsIgnorePattern: '^\\$\\$(Props|Events|Slots)$' }
]
}
};