Git Product home page Git Product logo

Comments (3)

pylint-bot avatar pylint-bot commented on May 28, 2024

Original comment by Sylvain Thénault (BitBucket: sthenault, GitHub: @sthenault?):


did you take a look at the "raw checker" concept, which are designed for such task where you need low level information not present at the AST level (eg the "format" checker) ?

from pylint.

pylint-bot avatar pylint-bot commented on May 28, 2024

Original comment by BitBucket: mitar, GitHub: @mitar?:


I did that, but it seems a lot of work. So probably I am not the only one to try to analyze comments as well and I think pylint should have some help for that. And I had some issues getting the whole code to process almost manually.

Here is my current code (not using raw):

https://github.com/wlanslovenija/nodewatcher/blob/development/nodelint.py#L104

So what I would propose is that along with current storing of docstrings, a docstring_raw or something would be stored, which would have """ and all empty lines before and after the docstring.

And same for comments. They could be added to the parse tree as comment (comment content) or comment_raw for including all space before and after the comment, including #.

from pylint.

PCManticore avatar PCManticore commented on May 28, 2024

Closing this one. This can be done currently using the TokenChecker concept. It's a bit of work, yes, but it works. While do want to include the comments at some point into the AST, by bringing a new parser, they will be definitely cleaned up, since the plan is to use them for pragma disables, type comments or just general introspection of the code through the AST. Thus they won't contain the empty lines or spaces before them, this is far more suited to be in the current TokenChecker than in the AST (and they are there right now, by implementing the process_tokens).

from pylint.

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.