microsoft / python-language-server
Features of Interest

Aspects in the source code identified through RegEx patterns.

Intro
  • Features of interest are any aspects of a software system that can be identified through patterns in code.
  • Features of interest provide you with a way to focus your attention on relevant parts of the codebase.
  • Typical examples include, security, TODOs, logging.
  • A feature of interest may be present in multiple files. Any source code file may be in zero or multiple features of interest.
Overview

GENERAL

TODOs
24,741 LOC (32%) 111 files | found text | found text per file
1 GENERAL Concerns
  • The "general" group contains 2 concerns.
    • TODOs
    • Unclassified
general
1.1 TODOs
  • The following criteria are used to filter files:
    • files with any line of content like ".*(TODO|FIXME)( |:| ).*".
  • 111 files match defined criteria (24,741 lines of code, 32.6% vs. main code):
    • 52 *.cs files (13,734 lines of code)
    • 58 *.pyi files (10,836 lines of code)
    • 1 *.py files (171 lines of code)
  • 256 lines match the content pattern.
details...