Giter Site home page Giter Site logo

Comments (3)

cooperlees avatar cooperlees commented on August 17, 2024 1

Agree this would be nice to add to B018. Thanks for reporting.

from flake8-bugbear.

JelleZijlstra avatar JelleZijlstra commented on August 17, 2024 1

I remembered that internally in our codebase we have a similar lint rule. It triggers on these types:

ast.Attribute, ast.Lambda, ast.Dict, ast.Set, ast.Compare, ast.Num, ast.Subscript, ast.List, ast.Tuple, ast.Name

So that's missing a few that I mentioned above. We also flag ast.Call nodes if the called function is one of sorted, reversed, map, and filter. If you write sorted(x) on a line by itself, you probably meant x.sort().

from flake8-bugbear.

JelleZijlstra avatar JelleZijlstra commented on August 17, 2024

"multiple variables" isn't a great description of what's going on here. If you look at the code for B018, it triggers if a statement consists only of an expression that is a set/list/tuple/dict literal or a non-str constant. (The original post claims that B018 triggers for +1 and -1, but I don't think it does.)

We could expand the rule to some other kinds of nodes:

  • UnaryOp, like +1, not x, ~3. I don't know of any code patterns that would trigger false positives.
  • BinOp, like 1 + 1 or 2 << 3. This is what the OP is asking for. This could have false positives with Airflow code, where you do dag << task to add a task to a dag.
  • Compare, like 1 < 2. Can't think of any problems with this one.
  • BoolOp, like a and b. People could be using this for conditional execution.
  • GeneratorExp, like (x for x in y). That is definitely useless.
  • JoinedStr, which is an f-string. Having an f-string in a line by itself doesn't have any use.

So we could definitely expand B018 to a few more kinds of AST nodes, but there's some room for false positives.

from flake8-bugbear.

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.