print logs for the linted files with `ng lint` command

Viewed 82

For my investigation I want ng lint - which is part of the quite developed Angular CLI - to print touched files. I want to see if it processes node_modules under various configurations.

Previously, I figured out that I can make ESLint become more verbose with the following command:

export DEBUG="eslint:*,-eslint:code-path"

The official documentation does not show any related flags for the command.
The reporting package also does not effect the "versbosity".

Question: how to make ng lint print the files it is processing?

1 Answers
Related