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:
parent
6ddaa69f69
commit
abc30a2a03
7 changed files with 59 additions and 7 deletions
|
|
@ -30,5 +30,17 @@ export default ts.config(
|
|||
parser: ts.parser,
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
rules: {
|
||||
'@typescript-eslint/no-unused-vars': [
|
||||
'error',
|
||||
{
|
||||
argsIgnorePattern: '^_',
|
||||
varsIgnorePattern: '^_',
|
||||
caughtErrorsIgnorePattern: '^_',
|
||||
},
|
||||
],
|
||||
},
|
||||
}
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue