Showing 13 of 307 total issues
Function NewShort
has 99 lines of code (exceeds 50 allowed). Consider refactoring. Open
Open
func NewShort( instrumentationFactory request.InstrumentationFactory, webFrontendURL string, timer timer.Timer, shortLinkRetriever shortlink.Retriever,
Function main
has 98 lines of code (exceeds 50 allowed). Consider refactoring. Open
Open
func main() { env := dep.InjectEnv() env.AutoLoadDotEnvFile() envConfig := envconfig.NewEnvConfig(env)
Function InjectRoutingService
has 23 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
func InjectRoutingService(runtime2 env.Runtime, prefix provider.LogPrefix, logLevel logger.LogLevel, sqlDB *sql.DB, githubClientID provider.GithubClientID, githubClientSecret provider.GithubClientSecret, facebookClientID provider.FacebookClientID, facebookClientSecret provider.FacebookClientSecret, facebookRedirectURI provider.FacebookRedirectURI, googleClientID provider.GoogleClientID, googleClientSecret provider.GoogleClientSecret, googleRedirectURI provider.GoogleRedirectURI, jwtSecret provider.JwtSecret, bufferSize provider.KeyGenBufferSize, kgsRPCConfig provider.KgsRPCConfig, webFrontendURL provider.WebFrontendURL, tokenValidDuration provider.TokenValidDuration, searchTimeout provider.SearchTimeout, swaggerUIDir provider.SwaggerUIDir, openAPISpecPath provider.OpenAPISpecPath, dataDogAPIKey provider.DataDogAPIKey, segmentAPIKey provider.SegmentAPIKey, ipStackAPIKey provider.IPStackAPIKey) (service.Routing, error) {
Function InjectRoutingService
has 23 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
runtime env.Runtime, prefix provider.LogPrefix, logLevel logger.LogLevel, sqlDB *sql.DB, githubClientID provider.GithubClientID,
Function initUIFactory
has 56 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export function initUIFactory( envService: EnvService, captchaService: CaptchaService): UIFactory { const cookieService = new CookieService();
Function InjectGraphQLService
has 16 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
func InjectGraphQLService(runtime2 env.Runtime, prefix provider.LogPrefix, logLevel logger.LogLevel, sqlDB *sql.DB, graphqlSchemaPath provider.GraphQLSchemaPath, graphqlPath provider.GraphQLPath, graphiQLDefaultQuery provider.GraphiQLDefaultQuery, secret provider.ReCaptchaSecret, jwtSecret provider.JwtSecret, bufferSize provider.KeyGenBufferSize, kgsRPCConfig provider.KgsRPCConfig, tokenValidDuration provider.TokenValidDuration, dataDogAPIKey provider.DataDogAPIKey, segmentAPIKey provider.SegmentAPIKey, ipStackAPIKey provider.IPStackAPIKey, googleAPIKey provider.GoogleAPIKey) (service.GraphQL, error) {
Function InjectGraphQLService
has 16 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
runtime env.Runtime, prefix provider.LogPrefix, logLevel logger.LogLevel, sqlDB *sql.DB, graphqlSchemaPath provider.GraphQLSchemaPath,
Function NewShortRoutes
has 12 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
instrumentationFactory request.InstrumentationFactory, webFrontendURL WebFrontendURL, timer timer.Timer, shortLinkRetriever shortlink.Retriever, featureDecisionMakerFactory feature.DecisionMakerFactory,
Function NewShort
has 12 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
instrumentationFactory request.InstrumentationFactory, webFrontendURL string, timer timer.Timer, shortLinkRetriever shortlink.Retriever, featureDecisionMakerFactory feature.DecisionMakerFactory,
Function registerValidSW
has 31 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function registerValidSW(swUrl, config) { navigator.serviceWorker .register(swUrl) .then(registration => { registration.onupdatefound = () => {
Method SingleSignOn.SignIn
has 7 return statements (exceeds 4 allowed). Open
Open
func (o SingleSignOn) SignIn(authorizationCode string) (string, error) { if len(authorizationCode) < 1 { return "", errors.New("authorizationCode can't be empty") }
Function NewRootCmd
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
dbConfig db.Config, config app.ServiceConfig, cmdFactory cli.CommandFactory, dbConnector db.Connector, dbMigrationTool db.MigrationTool,
Function default
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
Open
export default function( WrappedComponent: React.ComponentType<any>, makeAuthDecision: () => Promise<boolean>) { enum AuthDecision {
- Read upRead up