Coder Social home page Coder Social logo

Comments (3)

dkuku avatar dkuku commented on June 12, 2024 1

from credo.

rrrene avatar rrrene commented on June 12, 2024

@dkuku This does not look like an error caused by Credo.

Since the name of the check module (CredoChecks.NoAmbiguousAliases) starts with CredoChecks, I would guess that the failure comes from a plugin?

Judging from the error message, we can conclude that in that plugin there is a file named lib/credo_checks/no_ambiguous_aliases.ex and that there is a case statement on line 44, which does not seem to account for an occurence of nil.

from credo.

rrrene avatar rrrene commented on June 12, 2024

And the reason why this is happening is probably that the AST representation for an alias call is

{:alias, meta, [_|_] = args}

where args represents the parameters given to alias (like the module name and options).

And the representation for the parameter in your code snippet is

{:alias, meta, nil}

The function in which this happens is named find_alias/2, so I guess the plugin authors are simply not accounting for variables, parameters and likely module attributes named alias ...

from credo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.