feat (user): implement user management feature

This commit is contained in:
Abizrh
2025-08-28 01:18:55 +07:00
parent a7a77cb497
commit 35e2c663f5
12 changed files with 517 additions and 121 deletions
+4 -2
View File
@@ -10,6 +10,7 @@ export default withNuxt(
stylistic: {
semi: false,
quotes: 'single',
quoteProps: 'as-needed',
// Less strict formatting
jsx: false,
trailingComma: 'all',
@@ -18,14 +19,15 @@ export default withNuxt(
{
rules: {
// Basic rules
'quotes': ['error', 'single', { avoidEscape: true }],
quotes: ['error', 'single', { avoidEscape: true }],
'style/quote-props': 'off',
'style/no-trailing-spaces': ['error', { ignoreComments: true }],
'no-console': 'off',
// Relax strict formatting rules
'style/brace-style': 'off', // Allow inline if
'curly': ['error', 'multi-line'], // Only require braces for multi-line
curly: ['error', 'multi-line'], // Only require braces for multi-line
'style/arrow-parens': 'off',
// UnoCSS - make it warning instead of error, or disable completely