mirror of
				https://github.com/kyantech/Palmr.git
				synced 2025-11-03 21:43:20 +00:00 
			
		
		
		
	feat: enhance pre-push validation and update ESLint configurations
- Updated the Husky pre-push hook to validate all applications (web, docs, and server) before pushing changes, improving code quality checks. - Modified ESLint configurations for the docs app to include additional ignored directories, ensuring cleaner linting results. - Refactored the HomePage component in the docs app to improve structure and readability, while reintroducing the Highlight component for better content presentation. - Added a .prettierignore file in the server app to exclude specific directories from formatting, enhancing development workflow. - Updated various import statements across multiple files for consistency and clarity.
This commit is contained in:
		@@ -1,8 +1,9 @@
 | 
			
		||||
import { env } from "../../env";
 | 
			
		||||
import { LoginSchema, RequestPasswordResetSchema, createResetPasswordSchema } from "./dto";
 | 
			
		||||
import { AuthService } from "./service";
 | 
			
		||||
import { FastifyReply, FastifyRequest } from "fastify";
 | 
			
		||||
 | 
			
		||||
import { env } from "../../env";
 | 
			
		||||
import { createResetPasswordSchema, LoginSchema, RequestPasswordResetSchema } from "./dto";
 | 
			
		||||
import { AuthService } from "./service";
 | 
			
		||||
 | 
			
		||||
export class AuthController {
 | 
			
		||||
  private authService = new AuthService();
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user