Greet user (#21)

* ignore underscores

* great user and redirect to login on /app

* format

* pass user as property of data object
This commit is contained in:
Baobeld 2024-12-19 22:24:44 -05:00 committed by GitHub
parent 6ddaa69f69
commit abc30a2a03
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 59 additions and 7 deletions

View file

@ -30,5 +30,17 @@ export default ts.config(
parser: ts.parser,
},
},
},
{
rules: {
'@typescript-eslint/no-unused-vars': [
'error',
{
argsIgnorePattern: '^_',
varsIgnorePattern: '^_',
caughtErrorsIgnorePattern: '^_',
},
],
},
}
);