You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I upgraded angular-cli from an older version to the current rc.1. I also applied the changes to the package.json from this Pull Request #4248. While there is support for built-in formatters (using the --format flag), there is currently no support to specify the formatters directory for third party formatters. The tslint api provides such an option (see here), it is just not yet used in the angular-cli.
It would be great if you could provid this additional option. Currently I need to manually patch the lint command of the cli to work around it.
The log given by the failure.
If you run ng lint with the TeamCity formatter (ng lint --format TSHintTeamcity) you get the following output:
Error: formatter 'TSHintTeamcity' not found
at Linter.getResult (D:\projects\test\iks.frontend\node_modules\tslint\lib\linter.js:121:19)
at lintConfigs.forEach (D:\projects\test\iks.frontend\node_modules@angular\cli\tasks\lint.js:43:35)
at Array.forEach (native)
at Class.run (D:\projects\test\iks.frontend\node_modules@angular\cli\tasks\lint.js:27:14)
at Class.run (D:\projects\test\iks.frontend\node_modules@angular\cli\commands\lint.js:39:25)
at Class. (D:\projects\test\iks.frontend\node_modules@angular\cli\ember-cli\lib\models\command.js:134:17)
at process._tickCallback (internal/process/next_tick.js:103:7)
The text was updated successfully, but these errors were encountered:
If you just want to use tslint-teamcity-reporter there is no need to specify directory.
Just run ng lint --format tslint-teamcity-reporter (use package name).
But I still see the need of --formatters-dir support for user defined formatters.
OS?
Windows 7 and 10
Versions.
1.0.0-rc.1
Repro steps.
I upgraded angular-cli from an older version to the current rc.1. I also applied the changes to the package.json from this Pull Request #4248. While there is support for built-in formatters (using the --format flag), there is currently no support to specify the formatters directory for third party formatters. The tslint api provides such an option (see here), it is just not yet used in the angular-cli.
It would be great if you could provid this additional option. Currently I need to manually patch the lint command of the cli to work around it.
The log given by the failure.
If you run ng lint with the TeamCity formatter (ng lint --format TSHintTeamcity) you get the following output:
Error: formatter 'TSHintTeamcity' not found
at Linter.getResult (D:\projects\test\iks.frontend\node_modules\tslint\lib\linter.js:121:19)
at lintConfigs.forEach (D:\projects\test\iks.frontend\node_modules@angular\cli\tasks\lint.js:43:35)
at Array.forEach (native)
at Class.run (D:\projects\test\iks.frontend\node_modules@angular\cli\tasks\lint.js:27:14)
at Class.run (D:\projects\test\iks.frontend\node_modules@angular\cli\commands\lint.js:39:25)
at Class. (D:\projects\test\iks.frontend\node_modules@angular\cli\ember-cli\lib\models\command.js:134:17)
at process._tickCallback (internal/process/next_tick.js:103:7)
The text was updated successfully, but these errors were encountered: