Closed cowboyd closed 5 years ago
Running the command through yarn was not properly passing the dirglobs like src/**/*.ts through to eslint. As a result, none of our files were actually getting linted.
yarn
src/**/*.ts
eslint
Enquoting them makes sure that each is passed unexpanded to eslint.
Running the command through
yarn
was not properly passing the dirglobs likesrc/**/*.ts
through toeslint
. As a result, none of our files were actually getting linted.Enquoting them makes sure that each is passed unexpanded to
eslint
.