Skip to content
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.

Commit

Permalink
Use explicit exports for formatters.
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielRosenwasser committed Dec 10, 2015
1 parent 7140d48 commit ccc844c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/formatters/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

export * from "./jsonFormatter";
export * from "./pmdFormatter";
export * from "./proseFormatter";
export * from "./verboseFormatter";
export { Formatter as JsonFormatter } from "./jsonFormatter";
export { Formatter as PmdFormatter } from "./pmdFormatter";
export { Formatter as ProseFormatter } from "./proseFormatter";
export { Formatter as VerboseFormatter } from "./verboseFormatter";

0 comments on commit ccc844c

Please sign in to comment.