✨ feat (user): implement user management feature
This commit is contained in:
+4
-2
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user