Skip to content

updated golangci-ling linters list, applied feedback from most of them #37

updated golangci-ling linters list, applied feedback from most of them

updated golangci-ling linters list, applied feedback from most of them #37

GitHub Actions / golint-github-check completed Apr 25, 2024 in 10s

reviewdog [golint-github-check] report

reported by reviewdog 🐶

Findings (535)

cmd/auth_service/config/config.go|20 col 2| exported type Config should have comment or be unexported
cmd/auth_service/config/config.go|34 col 2| exported type App should have comment or be unexported
cmd/auth_service/config/config.go|41 col 1| exported function InitConfig should have comment or be unexported
cmd/auth_service/internal/repository/mongo.go|17 col 6| exported type MongoAdapter should have comment or be unexported
cmd/auth_service/internal/repository/mongo.go|31 col 1| exported method MongoAdapter.Exists should have comment or be unexported
cmd/auth_service/internal/repository/mongo.go|49 col 1| exported method MongoAdapter.Update should have comment or be unexported
cmd/auth_service/internal/repository/mongo.go|54 col 1| exported method MongoAdapter.Save should have comment or be unexported
cmd/auth_service/internal/repository/mongo.go|70 col 1| exported method MongoAdapter.FindAll should have comment or be unexported
cmd/auth_service/internal/repository/mongo.go|75 col 1| exported method MongoAdapter.FindOne should have comment or be unexported
cmd/auth_service/internal/repository/mongo.go|97 col 1| exported method MongoAdapter.GetOrCreate should have comment or be unexported
cmd/auth_service/internal/repository/mongo.go|102 col 1| exported method MongoAdapter.Confirm should have comment or be unexported
cmd/auth_service/internal/repository/mongo.go|107 col 1| exported method MongoAdapter.UpdateLastLogin should have comment or be unexported
cmd/auth_service/internal/repository/mysql.go|16 col 6| exported type UserAdapter should have comment or be unexported
cmd/auth_service/internal/repository/mysql.go|20 col 1| exported method UserAdapter.Exists should have comment or be unexported
cmd/auth_service/internal/repository/mysql.go|41 col 1| exported method UserAdapter.FindOne should have comment or be unexported
cmd/auth_service/internal/repository/mysql.go|51 col 1| exported method UserAdapter.Save should have comment or be unexported
cmd/auth_service/internal/repository/mysql.go|63 col 1| exported method UserAdapter.Update should have comment or be unexported
cmd/auth_service/internal/repository/mysql.go|75 col 1| exported method UserAdapter.FindAll should have comment or be unexported
cmd/auth_service/internal/repository/mysql.go|88 col 1| exported method UserAdapter.Confirm should have comment or be unexported
cmd/auth_service/internal/repository/mysql.go|98 col 1| exported method UserAdapter.SignUp should have comment or be unexported
cmd/auth_service/internal/repository/mysql.go|110 col 1| exported method UserAdapter.GetOrCreate should have comment or be unexported
cmd/auth_service/internal/repository/mysql.go|118 col 1| exported method UserAdapter.ByLogin should have comment or be unexported
cmd/auth_service/internal/repository/mysql.go|128 col 1| exported method UserAdapter.UpdateLastLogin should have comment or be unexported
cmd/auth_service/internal/repository/mysql.go|138 col 1| exported method UserAdapter.GetConnection should have comment or be unexported
cmd/auth_service/internal/repository/mysql.go|142 col 1| exported method UserAdapter.FindUserById should have comment or be unexported
cmd/auth_service/internal/repository/mysql.go|142 col 23| method FindUserById should be FindUserByID
cmd/auth_service/internal/repository/redis.go|11 col 6| exported type RedisRepository should have comment or be unexported
cmd/auth_service/internal/repository/redis.go|16 col 6| exported type RedisAdapter should have comment or be unexported
cmd/auth_service/internal/repository/redis.go|20 col 1| exported method RedisAdapter.Exists should have comment or be unexported
cmd/auth_service/internal/repository/redis.go|28 col 1| exported method RedisAdapter.Update should have comment or be unexported
cmd/auth_service/internal/repository/redis.go|33 col 1| exported method RedisAdapter.Save should have comment or be unexported
cmd/auth_service/internal/repository/redis.go|38 col 1| exported method RedisAdapter.FindAll should have comment or be unexported
cmd/auth_service/internal/repository/redis.go|43 col 1| exported method RedisAdapter.FindOne should have comment or be unexported
cmd/auth_service/internal/repository/redis.go|48 col 1| exported method RedisAdapter.GetOrCreate should have comment or be unexported
cmd/auth_service/internal/repository/redis.go|53 col 1| exported method RedisAdapter.Confirm should have comment or be unexported
cmd/auth_service/internal/repository/repository.go|9 col 6| exported type UserRepository should have comment or be unexported
cmd/auth_service/internal/repository/repository_factory.go|13 col 2| exported const MySQL should have comment (or a comment on this block) or be unexported
cmd/auth_service/internal/repository/repository_factory.go|18 col 1| exported function NewUserRepository should have comment or be unexported
cmd/auth_service/internal/rpc/auth.go|18 col 1| exported method Auth.SignInUser should have comment or be unexported
cmd/auth_service/internal/rpc/auth.go|43 col 1| exported method Auth.SignInByCode should have comment or be unexported
cmd/auth_service/internal/rpc/auth.go|67 col 1| exported method Auth.SignUpUser should have comment or be unexported
cmd/auth_service/internal/rpc/auth.go|95 col 1| exported method Auth.GetVerificationKey should have comment or be unexported
cmd/auth_service/internal/rpc/server.go|10 col 6| exported type Auth should have comment or be unexported
cmd/auth_service/internal/rpc/server.go|17 col 1| exported function NewGrpcAuthServer should have comment or be unexported
cmd/auth_service/internal/server/grpc.go|32 col 6| exported type GRPC should have comment or be unexported
cmd/auth_service/internal/server/grpc.go|40 col 1| exported function NewGrpcServer should have comment or be unexported
cmd/auth_service/internal/server/grpc.go|54 col 1| exported method GRPC.Run should have comment or be unexported
cmd/auth_service/internal/server/server.go|17 col 6| exported type Server should have comment or be unexported
cmd/auth_service/internal/server/server.go|22 col 1| exported function NewGRPC should have comment or be unexported
cmd/auth_service/internal/server/server.go|26 col 1| exported method Server.Run should have comment or be unexported
cmd/auth_service/internal/server/server.go|50 col 1| exported function NewContextCancellableByOsSignals should have comment or be unexported
cmd/auth_service/internal/services/auth_service.go|22 col 6| exported type AuthServiceImpl should have comment or be unexported
cmd/auth_service/internal/services/auth_service.go|29 col 1| exported function NewAuthService should have comment or be unexported
cmd/auth_service/internal/services/auth_service.go|50 col 1| exported method AuthServiceImpl.SignUpUser should have comment or be unexported
cmd/auth_service/internal/services/auth_service.go|90 col 1| exported method AuthServiceImpl.SignInUser should have comment or be unexported
cmd/auth_service/internal/services/auth_service.go|130 col 1| exported method AuthServiceImpl.GetVerificationKey should have comment or be unexported
cmd/auth_service/internal/services/auth_service.go|149 col 1| exported method AuthServiceImpl.Find should have comment or be unexported
cmd/auth_service/internal/services/auth_service.go|170 col 1| exported method AuthServiceImpl.Load should have comment or be unexported
cmd/auth_service/internal/services/auth_service.go|203 col 1| exported method AuthServiceImpl.Verify should have comment or be unexported
cmd/auth_service/internal/services/auth_service.go|223 col 1| exported method AuthServiceImpl.FindUserByID should have comment or be unexported
cmd/auth_service/internal/services/services.go|9 col 6| exported type AuthService should have comment or be unexported
cmd/auth_service/internal/services/user_gorm_service.go|12 col 2| exported type UserService should have comment or be unexported
cmd/auth_service/internal/services/user_gorm_service.go|20 col 1| exported function NewORMUserService should have comment or be unexported
cmd/auth_service/internal/services/user_sql_service.go|16 col 2| exported type SQLServiceImpl should have comment or be unexported
cmd/auth_service/internal/services/user_sql_service.go|20 col 2| exported type UserSQLService should have comment or be unexported
cmd/auth_service/internal/services/user_sql_service.go|32 col 1| exported method SQLServiceImpl.GetByCode should have comment or be unexported
cmd/auth_service/internal/services/user_sql_service.go|51 col 1| exported method SQLServiceImpl.GetByID should have comment or be unexported
cmd/auth_service/internal/services/user_sql_service.go|76 col 1| exported method SQLServiceImpl.UsernameInUse should have comment or be unexported
cmd/auth_service/internal/services/user_sql_service.go|92 col 1| exported method SQLServiceImpl.StoreVerificationData should have comment or be unexported
cmd/auth_service/internal/services/user_sql_service.go|105 col 1| exported method SQLServiceImpl.UpdateUser should have comment or be unexported
cmd/auth_service/internal/services/user_sql_service.go|116 col 1| exported method SQLServiceImpl.LoginUser should have comment or be unexported
cmd/auth_service/internal/services/user_sql_service.go|136 col 1| exported method SQLServiceImpl.UpdateUserPassword should have comment or be unexported
cmd/auth_service/internal/services/user_sql_service.go|147 col 1| exported method SQLServiceImpl.CreateUser should have comment or be unexported
cmd/consumer_service/main.go|58 col 1| exported function NewContextCancellableByOsSignals should have comment or be unexported
cmd/consumer_service/config/config.go|14 col 6| exported type Config should have comment or be unexported
cmd/consumer_service/config/config.go|20 col 1| exported function InitConfig should have comment or be unexported
cmd/consumer_service/internal/handlers/customer_account_confirmation_requested.go|17 col 1| exported function WrapHandleCustomerAccountRequestConfirmEmail should have comment or be unexported
cmd/consumer_service/internal/handlers/customer_account_confirmation_requested.go|31 col 1| exported function CustomerAccountRequestConfirmEmail should have comment or be unexported
cmd/consumer_service/internal/handlers/customer_account_confirmed.go|10 col 6| exported type CustomerAccountActivatedEventEmail should have comment or be unexported
cmd/consumer_service/internal/handlers/customer_account_confirmed.go|16 col 1| exported function WrapHandleCustomerAccountConfirmedEmail should have comment or be unexported
cmd/consumer_service/internal/handlers/customer_account_confirmed.go|27 col 1| exported function HandleCustomerAccountConfirmEmail should have comment or be unexported
cmd/consumer_service/internal/handlers/customer_logged_in.go|10 col 6| exported type CustomerLoggedInEvent should have comment or be unexported
cmd/consumer_service/internal/handlers/customer_logged_in.go|22 col 1| exported function WrapHandleCustomerLoggedIn should have comment or be unexported
cmd/consumer_service/internal/handlers/customer_logged_in.go|36 col 1| exported function HandleCustomerLoggedIn should have comment or be unexported
cmd/consumer_service/internal/handlers/customer_password_reset_requested.go|10 col 6| exported type CustomerPasswordResetRequested should have comment or be unexported
cmd/consumer_service/internal/handlers/customer_password_reset_requested.go|16 col 1| exported function WrapHandleCustomerPasswordResetRequestedEmail should have comment or be unexported
cmd/consumer_service/internal/handlers/customer_password_reset_requested.go|27 col 1| exported function CustomerPasswordResetRequestEmail should have comment or be unexported
cmd/consumer_service/internal/handlers/customer_password_reset_succeeded.go|10 col 6| exported type CustomerPasswordResetSucceeded should have comment or be unexported
cmd/consumer_service/internal/handlers/customer_password_reset_succeeded.go|15 col 1| exported function WrapHandleCustomerPasswordResetRequestedSuccessed should have comment or be unexported
cmd/consumer_service/internal/handlers/customer_password_reset_succeeded.go|26 col 1| exported function CustomerPasswordResetSuccessEmail should have comment or be unexported
cmd/gateway/config/config.go|14 col 6| exported type Config should have comment or be unexported
cmd/gateway/config/config.go|26 col 6| exported type App should have comment or be unexported
cmd/gateway/config/config.go|31 col 6| exported type Grpc should have comment or be unexported
cmd/gateway/config/config.go|36 col 1| exported function InitConfig should have comment or be unexported
cmd/gateway/internal/cqrs/cqrs.go|14 col 6| exported type Application should have comment or be unexported
cmd/gateway/internal/cqrs/cqrs.go|19 col 6| exported type Commands should have comment or be unexported
cmd/gateway/internal/cqrs/cqrs.go|27 col 6| exported type Queries should have comment or be unexported
cmd/gateway/internal/cqrs/cqrs.go|37 col 1| exported function NewService should have comment or be unexported
cmd/gateway/internal/cqrs/cqrs.go|71 col 1| exported method Application.CheckUserExistsQuery should have comment or be unexported
cmd/gateway/internal/cqrs/cqrs.go|79 col 1| exported method Application.SignupUserCommand should have comment or be unexported
cmd/gateway/internal/cqrs/cqrs.go|83 col 1| exported method Application.SigninCommand should have comment or be unexported
cmd/gateway/internal/cqrs/cqrs.go|87 col 1| exported method Application.SigninByCodeCommand should have comment or be unexported
cmd/gateway/internal/cqrs/cqrs.go|91 col 1| exported method Application.GetVerificationCode should have comment or be unexported
cmd/gateway/internal/cqrs/cqrs.go|95 col 1| exported method Application.FetchUser should have comment or be unexported
cmd/gateway/internal/cqrs/cqrs.go|103 col 1| exported method Application.ChangePassword should have comment or be unexported
cmd/gateway/internal/cqrs/cqrs.go|110 col 1| exported method Application.GetUser should have comment or be unexported
cmd/gateway/internal/cqrs/cqrs.go|126 col 1| exported method Application.GetUserByCode should have comment or be unexported
cmd/gateway/internal/cqrs/command/change_password.go|10 col 6| exported type ChangePassword should have comment or be unexported
cmd/gateway/internal/cqrs/command/change_password.go|11 col 2| struct field Id should be ID
cmd/gateway/internal/cqrs/command/change_password.go|15 col 6| exported type ChangePasswordHandler should have comment or be unexported
cmd/gateway/internal/cqrs/command/change_password.go|19 col 1| exported function NewChangePasswordHandler should have comment or be unexported
cmd/gateway/internal/cqrs/command/change_password.go|23 col 1| exported method ChangePasswordHandler.Handle should have comment or be unexported
cmd/gateway/internal/cqrs/command/sign_in.go|12 col 6| exported type SignInHandler should have comment or be unexported
cmd/gateway/internal/cqrs/command/sign_in.go|16 col 1| exported function NewSignInHandler should have comment or be unexported
cmd/gateway/internal/cqrs/command/sign_in.go|20 col 1| exported method SignInHandler.Handle should have comment or be unexported
cmd/gateway/internal/cqrs/command/sign_in_by_code.go|12 col 6| exported type SignInByCodeHandler should have comment or be unexported
cmd/gateway/internal/cqrs/command/sign_in_by_code.go|16 col 1| exported function NewSignInByCodeHandler should have comment or be unexported
cmd/gateway/internal/cqrs/command/sign_in_by_code.go|20 col 1| exported method SignInByCodeHandler.Handle should have comment or be unexported
cmd/gateway/internal/cqrs/command/sign_up.go|12 col 6| exported type SignUpUser should have comment or be unexported
cmd/gateway/internal/cqrs/command/sign_up.go|16 col 6| exported type SignUpHandler should have comment or be unexported
cmd/gateway/internal/cqrs/command/sign_up.go|20 col 1| exported function NewSignUpHandler should have comment or be unexported
cmd/gateway/internal/cqrs/command/sign_up.go|24 col 1| exported method SignUpHandler.Handle should have comment or be unexported
cmd/gateway/internal/cqrs/command/verify_code.go|9 col 6| exported type VerifyCode should have comment or be unexported
cmd/gateway/internal/cqrs/command/verify_code.go|13 col 6| exported type VerifyCodeHandler should have comment or be unexported
cmd/gateway/internal/cqrs/command/verify_code.go|17 col 1| exported function NewVerifyCodeHandler should have comment or be unexported
cmd/gateway/internal/cqrs/command/verify_code.go|21 col 1| exported method VerifyCodeHandler.Handle should have comment or be unexported
cmd/gateway/internal/cqrs/query/User_exists_by_email_or_login.go|11 col 6| exported type UserExistsHandler should have comment or be unexported
cmd/gateway/internal/cqrs/query/User_exists_by_email_or_login.go|15 col 1| exported function NewUserExistsHandler should have comment or be unexported
cmd/gateway/internal/cqrs/query/User_exists_by_email_or_login.go|19 col 1| exported method UserExistsHandler.Handle should have comment or be unexported
cmd/gateway/internal/cqrs/query/get_user.go|10 col 6| exported type GetUserHandler should have comment or be unexported
cmd/gateway/internal/cqrs/query/get_user.go|14 col 1| exported function NewGetUserHandler should have comment or be unexported
cmd/gateway/internal/cqrs/query/get_user.go|18 col 1| exported method GetUserHandler.Handle should have comment or be unexported
cmd/gateway/internal/cqrs/query/get_user_by_code.go|10 col 6| exported type GetUserByCodeHandler should have comment or be unexported
cmd/gateway/internal/cqrs/query/get_user_by_code.go|14 col 1| exported function NewGetUserByCodeHandler should have comment or be unexported
cmd/gateway/internal/cqrs/query/get_user_by_code.go|18 col 1| exported method GetUserByCodeHandler.Handle should have comment or be unexported
cmd/gateway/internal/cqrs/query/user_details.go|10 col 6| exported type UserRequest should have comment or be unexported
cmd/gateway/internal/cqrs/query/user_details.go|14 col 6| exported type UserDetailsHandler should have comment or be unexported
cmd/gateway/internal/cqrs/query/user_details.go|18 col 1| exported function NewUserDetailsHandler should have comment or be unexported
cmd/gateway/internal/cqrs/query/user_details.go|22 col 1| exported method UserDetailsHandler.Handle should have comment or be unexported
cmd/gateway/internal/cqrs/query/user_fetch.go|10 col 6| exported type FetchUserHandler should have comment or be unexported
cmd/gateway/internal/cqrs/query/user_fetch.go|13 col 6| exported type FetchUser should have comment or be unexported
cmd/gateway/internal/cqrs/query/user_fetch.go|17 col 1| exported function NewFetchUserHandler should have comment or be unexported
cmd/gateway/internal/cqrs/query/user_fetch.go|21 col 1| exported method FetchUserHandler.Handle should have comment or be unexported
cmd/gateway/internal/cqrs/query/verification_code.go|10 col 6| exported type VerificationCodeHandler should have comment or be unexported
cmd/gateway/internal/cqrs/query/verification_code.go|13 col 6| exported type VerificationCode should have comment or be unexported
cmd/gateway/internal/cqrs/query/verification_code.go|17 col 1| exported function NewVerificationCodeHandler should have comment or be unexported
cmd/gateway/internal/cqrs/query/verification_code.go|21 col 1| exported method VerificationCodeHandler.Handle should have comment or be unexported
cmd/gateway/internal/handler/auth.go|23 col 6| exported type AuthHandler should have comment or be unexported
cmd/gateway/internal/handler/auth.go|53 col 1| exported function NewAuthHandler should have comment or be unexported
cmd/gateway/internal/handler/crypton.go|15 col 6| exported type CryptonHandler should have comment or be unexported
cmd/gateway/internal/handler/crypton.go|55 col 1| exported function NewCryptonHandler should have comment or be unexported
cmd/gateway/internal/handler/docs.go|10 col 6| exported type DocsHandler should have comment or be unexported
cmd/gateway/internal/handler/docs.go|29 col 1| exported function NewDocsHandler should have comment or be unexported
cmd/gateway/internal/handler/handler.go|9 col 6| exported type HandlerFunc should have comment or be unexported
cmd/gateway/internal/handler/handler.go|9 col 6| type name will be used as handler.HandlerFunc by other packages, and that stutters; consider calling this Func
cmd/gateway/internal/handler/handler.go|11 col 6| exported type RouteRegisterer should have comment or be unexported
cmd/gateway/internal/handler/user.go|23 col 6| exported type UserHandler should have comment or be unexported
cmd/gateway/internal/handler/user.go|34 col 1| exported function NewUserHandler should have comment or be unexported
cmd/gateway/internal/router/router.go|17 col 1| exported function NewHTTPRouter should have comment or be unexported
cmd/gateway/internal/rpc_client/auth.go|1 col 1| don't use an underscore in package name
cmd/gateway/internal/rpc_client/auth.go|7 col 1| exported function NewAuthClient should have comment or be unexported
cmd/gateway/internal/rpc_client/connection.go|1 col 1| don't use an underscore in package name
cmd/gateway/internal/rpc_client/user.go|1 col 1| don't use an underscore in package name
cmd/gateway/internal/rpc_client/user.go|5 col 1| exported function NewUserClient should have comment or be unexported
cmd/gateway/internal/server/rest.go|16 col 6| exported type Server should have comment or be unexported
cmd/gateway/internal/server/rest.go|23 col 1| exported function NewServer should have comment or be unexported
cmd/gateway/internal/server/rest.go|64 col 1| exported method Server.Shutdown should have comment or be unexported
cmd/tester_service/config/config.go|15 col 6| exported type Config should have comment or be unexported
cmd/tester_service/config/config.go|23 col 6| exported type App should have comment or be unexported
cmd/tester_service/config/config.go|28 col 6| exported type HTTP should have comment or be unexported
cmd/tester_service/config/config.go|37 col 1| exported function InitConfig should have comment or be unexported
cmd/tester_service/internal/workers/daisy_chain.go|22 col 6| exported type DaisyChain should have comment or be unexported
cmd/tester_service/internal/workers/daisy_chain.go|29 col 1| exported function NewDaisyChain should have comment or be unexported
cmd/tester_service/internal/workers/daisy_chain.go|36 col 1| exported method DaisyChain.Run should have comment or be unexported
cmd/tester_service/internal/workers/factory.go|11 col 6| exported type WorkerRunner should have comment or be unexported
cmd/tester_service/internal/workers/factory.go|15 col 1| exported function NewWorker should have comment or be unexported
cmd/tester_service/internal/workers/ordered.go|19 col 6| exported type Ordered should have comment or be unexported
cmd/tester_service/internal/workers/ordered.go|39 col 1| exported function NewOrdered should have comment or be unexported
cmd/tester_service/internal/workers/ordered.go|53 col 1| exported method Ordered.Run should have comment or be unexported
cmd/tester_service/internal/workers/pool.go|9 col 6| exported type Pool should have comment or be unexported
cmd/tester_service/internal/workers/pool.go|14 col 1| exported function NewPool should have comment or be unexported
cmd/tester_service/internal/workers/pool.go|21 col 1| exported method Pool.Run should have comment or be unexported
cmd/tester_service/internal/workers/sequential.go|20 col 6| exported type Sequential should have comment or be unexported
cmd/tester_service/internal/workers/sequential.go|31 col 1| exported function NewSequential should have comment or be unexported
cmd/tester_service/internal/workers/sequential.go|40 col 1| exported method Sequential.Run should have comment or be unexported
cmd/user_service/config/config.go|22 col 2| exported type Config should have comment or be unexported
cmd/user_service/config/config.go|36 col 2| exported type App should have comment or be unexported
cmd/user_service/config/config.go|43 col 1| exported function InitConfig should have comment or be unexported
cmd/user_service/internal/repository/mongo.go|16 col 6| exported type MongoAdapter should have comment or be unexported
cmd/user_service/internal/repository/mongo.go|22 col 1| exported function NewMongoDBUserRepository should have comment or be unexported
cmd/user_service/internal/repository/mongo.go|30 col 1| exported method MongoAdapter.Save should have comment or be unexported
cmd/user_service/internal/repository/mongo.go|34 col 1| exported method MongoAdapter.Update should have comment or be unexported
cmd/user_service/internal/repository/mongo.go|55 col 1| exported method MongoAdapter.FindOne should have comment or be unexported
cmd/user_service/internal/repository/mongo.go|77 col 1| exported method MongoAdapter.SingUp should have comment or be unexported
cmd/user_service/internal/repository/mongo.go|81 col 1| exported method MongoAdapter.Load should have comment or be unexported
cmd/user_service/internal/repository/mongo.go|85 col 1| exported method MongoAdapter.ById should have comment or be unexported
cmd/user_service/internal/repository/mongo.go|85 col 24| method ById should be ByID
cmd/user_service/internal/repository/mongo.go|89 col 1| exported method MongoAdapter.ByLogin should have comment or be unexported
cmd/user_service/internal/repository/mongo.go|93 col 1| exported method MongoAdapter.ConfirmVerify should have comment or be unexported
cmd/user_service/internal/repository/mongo.go|97 col 1| exported method MongoAdapter.UpdateLastLogin should have comment or be unexported
cmd/user_service/internal/repository/mongo.go|101 col 1| exported method MongoAdapter.FindUserByID should have comment or be unexported
cmd/user_service/internal/repository/mongo.go|105 col 1| exported method MongoAdapter.ChangePassword should have comment or be unexported
cmd/user_service/internal/repository/redis.go|13 col 6| exported type Redis should have comment or be unexported
cmd/user_service/internal/repository/redis.go|18 col 1| exported method Redis.PutUser should have comment or be unexported
cmd/user_service/internal/repository/redis.go|36 col 1| exported function NewRedisRepository should have comment or be unexported
cmd/user_service/internal/repository/repository.go|9 col 6| exported type UserRepository should have comment or be unexported
cmd/user_service/internal/repository/repository_factory.go|12 col 2| exported const MySQL should have comment (or a comment on this block) or be unexported
cmd/user_service/internal/repository/repository_factory.go|16 col 1| exported function NewUserRepository should have comment or be unexported
cmd/user_service/internal/repository/user_adapter.go|14 col 6| exported type UserAdapter should have comment or be unexported
cmd/user_service/internal/repository/user_adapter.go|18 col 1| exported method UserAdapter.Save should have comment or be unexported
cmd/user_service/internal/repository/user_adapter.go|23 col 1| exported method UserAdapter.Update should have comment or be unexported
cmd/user_service/internal/repository/user_adapter.go|35 col 1| exported method UserAdapter.FindOne should have comment or be unexported
cmd/user_service/internal/repository/user_adapter.go|49 col 1| exported function NewUserAdapter should have comment or be unexported
cmd/user_service/internal/repository/user_adapter.go|53 col 1| exported method UserAdapter.ChangePassword should have comment or be unexported
cmd/user_service/internal/repository/user_adapter.go|63 col 1| exported method UserAdapter.Load should have comment or be unexported
cmd/user_service/internal/repository/user_adapter.go|73 col 1| exported method UserAdapter.ConfirmVerify should have comment or be unexported
cmd/user_service/internal/repository/user_adapter.go|96 col 1| exported method UserAdapter.SingUp should have comment or be unexported
cmd/user_service/internal/repository/user_adapter.go|100 col 1| exported method UserAdapter.ById should have comment or be unexported
cmd/user_service/internal/repository/user_adapter.go|100 col 23| method ById should be ByID
cmd/user_service/internal/repository/user_adapter.go|106 col 1| exported method UserAdapter.ByLogin should have comment or be unexported
cmd/user_service/internal/repository/user_adapter.go|116 col 1| exported method UserAdapter.UpdateLastLogin should have comment or be unexported
cmd/user_service/internal/repository/user_adapter.go|123 col 1| exported method UserAdapter.FindUserByID should have comment or be unexported
cmd/user_service/internal/rpc/rpc_get_user.go|17 col 1| exported method UserServer.CheckUserExists should have comment or be unexported
cmd/user_service/internal/rpc/rpc_get_user.go|29 col 1| exported method UserServer.GetUserById should have comment or be unexported
cmd/user_service/internal/rpc/rpc_get_user.go|29 col 23| method GetUserById should be GetUserByID
cmd/user_service/internal/rpc/rpc_get_user.go|59 col 1| exported method UserServer.VerifyUser should have comment or be unexported
cmd/user_service/internal/rpc/rpc_get_user.go|74 col 1| exported method UserServer.GetUserByCode should have comment or be unexported
cmd/user_service/internal/rpc/rpc_get_user.go|95 col 1| exported method UserServer.GetUser should have comment or be unexported
cmd/user_service/internal/rpc/rpc_get_user.go|118 col 1| exported method UserServer.GetUserDetails should have comment or be unexported
cmd/user_service/internal/rpc/rpc_get_user.go|142 col 1| exported method UserServer.GetUserByToken should have comment or be unexported
cmd/user_service/internal/rpc/rpc_get_user.go|172 col 1| exported method UserServer.ChangePassword should have comment or be unexported
cmd/user_service/internal/rpc/user-server.go|9 col 6| exported type UserServer should have comment or be unexported
cmd/user_service/internal/rpc/user-server.go|15 col 1| exported function NewGrpcUserServer should have comment or be unexported
cmd/user_service/internal/server/grpc.go|38 col 6| exported type GRPC should have comment or be unexported
cmd/user_service/internal/server/grpc.go|46 col 1| exported function NewGrpcServer should have comment or be unexported
cmd/user_service/internal/server/grpc.go|58 col 1| exported method GRPC.Run should have comment or be unexported
cmd/user_service/internal/server/server.go|17 col 6| exported type Server should have comment or be unexported
cmd/user_service/internal/server/server.go|23 col 1| exported function NewGRPC should have comment or be unexported
cmd/user_service/internal/server/server.go|27 col 1| exported method Server.Run should have comment or be unexported
cmd/user_service/internal/server/server.go|53 col 1| exported function NewContextCancellableByOsSignals should have comment or be unexported
cmd/user_service/internal/services/user_service.go|24 col 2| exported type UserServiceImpl should have comment or be unexported
cmd/user_service/internal/services/user_service.go|30 col 2| exported type UserService should have comment or be unexported
cmd/user_service/internal/services/user_service.go|44 col 1| exported function NewUserService should have comment or be unexported
cmd/user_service/internal/services/user_service.go|63 col 1| exported method UserServiceImpl.Find should have comment or be unexported
... (Too many findings. Dropped some findings)

Filtered Findings (0)

Annotations

Check warning on line 20 in cmd/auth_service/config/config.go

See this annotation in the file changed.

@github-actions github-actions / golint-github-check

[golint-github-check] cmd/auth_service/config/config.go#L20

exported type Config should have comment or be unexported
Raw output
cmd/auth_service/config/config.go:20:2: exported type Config should have comment or be unexported

Check warning on line 34 in cmd/auth_service/config/config.go

See this annotation in the file changed.

@github-actions github-actions / golint-github-check

[golint-github-check] cmd/auth_service/config/config.go#L34

exported type App should have comment or be unexported
Raw output
cmd/auth_service/config/config.go:34:2: exported type App should have comment or be unexported

Check warning on line 41 in cmd/auth_service/config/config.go

See this annotation in the file changed.

@github-actions github-actions / golint-github-check

[golint-github-check] cmd/auth_service/config/config.go#L41

exported function InitConfig should have comment or be unexported
Raw output
cmd/auth_service/config/config.go:41:1: exported function InitConfig should have comment or be unexported

Check warning on line 17 in cmd/auth_service/internal/repository/mongo.go

See this annotation in the file changed.

@github-actions github-actions / golint-github-check

[golint-github-check] cmd/auth_service/internal/repository/mongo.go#L17

exported type MongoAdapter should have comment or be unexported
Raw output
cmd/auth_service/internal/repository/mongo.go:17:6: exported type MongoAdapter should have comment or be unexported

Check warning on line 31 in cmd/auth_service/internal/repository/mongo.go

See this annotation in the file changed.

@github-actions github-actions / golint-github-check

[golint-github-check] cmd/auth_service/internal/repository/mongo.go#L31

exported method MongoAdapter.Exists should have comment or be unexported
Raw output
cmd/auth_service/internal/repository/mongo.go:31:1: exported method MongoAdapter.Exists should have comment or be unexported

Check warning on line 49 in cmd/auth_service/internal/repository/mongo.go

See this annotation in the file changed.

@github-actions github-actions / golint-github-check

[golint-github-check] cmd/auth_service/internal/repository/mongo.go#L49

exported method MongoAdapter.Update should have comment or be unexported
Raw output
cmd/auth_service/internal/repository/mongo.go:49:1: exported method MongoAdapter.Update should have comment or be unexported

Check warning on line 54 in cmd/auth_service/internal/repository/mongo.go

See this annotation in the file changed.

@github-actions github-actions / golint-github-check

[golint-github-check] cmd/auth_service/internal/repository/mongo.go#L54

exported method MongoAdapter.Save should have comment or be unexported
Raw output
cmd/auth_service/internal/repository/mongo.go:54:1: exported method MongoAdapter.Save should have comment or be unexported

Check warning on line 70 in cmd/auth_service/internal/repository/mongo.go

See this annotation in the file changed.

@github-actions github-actions / golint-github-check

[golint-github-check] cmd/auth_service/internal/repository/mongo.go#L70

exported method MongoAdapter.FindAll should have comment or be unexported
Raw output
cmd/auth_service/internal/repository/mongo.go:70:1: exported method MongoAdapter.FindAll should have comment or be unexported

Check warning on line 75 in cmd/auth_service/internal/repository/mongo.go

See this annotation in the file changed.

@github-actions github-actions / golint-github-check

[golint-github-check] cmd/auth_service/internal/repository/mongo.go#L75

exported method MongoAdapter.FindOne should have comment or be unexported
Raw output
cmd/auth_service/internal/repository/mongo.go:75:1: exported method MongoAdapter.FindOne should have comment or be unexported

Check warning on line 97 in cmd/auth_service/internal/repository/mongo.go

See this annotation in the file changed.

@github-actions github-actions / golint-github-check

[golint-github-check] cmd/auth_service/internal/repository/mongo.go#L97

exported method MongoAdapter.GetOrCreate should have comment or be unexported
Raw output
cmd/auth_service/internal/repository/mongo.go:97:1: exported method MongoAdapter.GetOrCreate should have comment or be unexported

Check warning on line 102 in cmd/auth_service/internal/repository/mongo.go

See this annotation in the file changed.

@github-actions github-actions / golint-github-check

[golint-github-check] cmd/auth_service/internal/repository/mongo.go#L102

exported method MongoAdapter.Confirm should have comment or be unexported
Raw output
cmd/auth_service/internal/repository/mongo.go:102:1: exported method MongoAdapter.Confirm should have comment or be unexported

Check warning on line 107 in cmd/auth_service/internal/repository/mongo.go

See this annotation in the file changed.

@github-actions github-actions / golint-github-check

[golint-github-check] cmd/auth_service/internal/repository/mongo.go#L107

exported method MongoAdapter.UpdateLastLogin should have comment or be unexported
Raw output
cmd/auth_service/internal/repository/mongo.go:107:1: exported method MongoAdapter.UpdateLastLogin should have comment or be unexported

Check warning on line 16 in cmd/auth_service/internal/repository/mysql.go

See this annotation in the file changed.

@github-actions github-actions / golint-github-check

[golint-github-check] cmd/auth_service/internal/repository/mysql.go#L16

exported type UserAdapter should have comment or be unexported
Raw output
cmd/auth_service/internal/repository/mysql.go:16:6: exported type UserAdapter should have comment or be unexported

Check warning on line 20 in cmd/auth_service/internal/repository/mysql.go

See this annotation in the file changed.

@github-actions github-actions / golint-github-check

[golint-github-check] cmd/auth_service/internal/repository/mysql.go#L20

exported method UserAdapter.Exists should have comment or be unexported
Raw output
cmd/auth_service/internal/repository/mysql.go:20:1: exported method UserAdapter.Exists should have comment or be unexported

Check warning on line 41 in cmd/auth_service/internal/repository/mysql.go

See this annotation in the file changed.

@github-actions github-actions / golint-github-check

[golint-github-check] cmd/auth_service/internal/repository/mysql.go#L41

exported method UserAdapter.FindOne should have comment or be unexported
Raw output
cmd/auth_service/internal/repository/mysql.go:41:1: exported method UserAdapter.FindOne should have comment or be unexported

Check warning on line 51 in cmd/auth_service/internal/repository/mysql.go

See this annotation in the file changed.

@github-actions github-actions / golint-github-check

[golint-github-check] cmd/auth_service/internal/repository/mysql.go#L51

exported method UserAdapter.Save should have comment or be unexported
Raw output
cmd/auth_service/internal/repository/mysql.go:51:1: exported method UserAdapter.Save should have comment or be unexported

Check warning on line 63 in cmd/auth_service/internal/repository/mysql.go

See this annotation in the file changed.

@github-actions github-actions / golint-github-check

[golint-github-check] cmd/auth_service/internal/repository/mysql.go#L63

exported method UserAdapter.Update should have comment or be unexported
Raw output
cmd/auth_service/internal/repository/mysql.go:63:1: exported method UserAdapter.Update should have comment or be unexported

Check warning on line 75 in cmd/auth_service/internal/repository/mysql.go

See this annotation in the file changed.

@github-actions github-actions / golint-github-check

[golint-github-check] cmd/auth_service/internal/repository/mysql.go#L75

exported method UserAdapter.FindAll should have comment or be unexported
Raw output
cmd/auth_service/internal/repository/mysql.go:75:1: exported method UserAdapter.FindAll should have comment or be unexported

Check warning on line 88 in cmd/auth_service/internal/repository/mysql.go

See this annotation in the file changed.

@github-actions github-actions / golint-github-check

[golint-github-check] cmd/auth_service/internal/repository/mysql.go#L88

exported method UserAdapter.Confirm should have comment or be unexported
Raw output
cmd/auth_service/internal/repository/mysql.go:88:1: exported method UserAdapter.Confirm should have comment or be unexported

Check warning on line 98 in cmd/auth_service/internal/repository/mysql.go

See this annotation in the file changed.

@github-actions github-actions / golint-github-check

[golint-github-check] cmd/auth_service/internal/repository/mysql.go#L98

exported method UserAdapter.SignUp should have comment or be unexported
Raw output
cmd/auth_service/internal/repository/mysql.go:98:1: exported method UserAdapter.SignUp should have comment or be unexported

Check warning on line 110 in cmd/auth_service/internal/repository/mysql.go

See this annotation in the file changed.

@github-actions github-actions / golint-github-check

[golint-github-check] cmd/auth_service/internal/repository/mysql.go#L110

exported method UserAdapter.GetOrCreate should have comment or be unexported
Raw output
cmd/auth_service/internal/repository/mysql.go:110:1: exported method UserAdapter.GetOrCreate should have comment or be unexported

Check warning on line 118 in cmd/auth_service/internal/repository/mysql.go

See this annotation in the file changed.

@github-actions github-actions / golint-github-check

[golint-github-check] cmd/auth_service/internal/repository/mysql.go#L118

exported method UserAdapter.ByLogin should have comment or be unexported
Raw output
cmd/auth_service/internal/repository/mysql.go:118:1: exported method UserAdapter.ByLogin should have comment or be unexported

Check warning on line 128 in cmd/auth_service/internal/repository/mysql.go

See this annotation in the file changed.

@github-actions github-actions / golint-github-check

[golint-github-check] cmd/auth_service/internal/repository/mysql.go#L128

exported method UserAdapter.UpdateLastLogin should have comment or be unexported
Raw output
cmd/auth_service/internal/repository/mysql.go:128:1: exported method UserAdapter.UpdateLastLogin should have comment or be unexported

Check warning on line 138 in cmd/auth_service/internal/repository/mysql.go

See this annotation in the file changed.

@github-actions github-actions / golint-github-check

[golint-github-check] cmd/auth_service/internal/repository/mysql.go#L138

exported method UserAdapter.GetConnection should have comment or be unexported
Raw output
cmd/auth_service/internal/repository/mysql.go:138:1: exported method UserAdapter.GetConnection should have comment or be unexported

Check warning on line 142 in cmd/auth_service/internal/repository/mysql.go

See this annotation in the file changed.

@github-actions github-actions / golint-github-check

[golint-github-check] cmd/auth_service/internal/repository/mysql.go#L142

exported method UserAdapter.FindUserById should have comment or be unexported
Raw output
cmd/auth_service/internal/repository/mysql.go:142:1: exported method UserAdapter.FindUserById should have comment or be unexported