index.js 1.6KB

12345678910111213141516171819202122232425262728293031323334353637
  1. "use strict";
  2. /**
  3. * @license
  4. * Copyright 2013 Palantir Technologies, Inc.
  5. *
  6. * Licensed under the Apache License, Version 2.0 (the "License");
  7. * you may not use this file except in compliance with the License.
  8. * You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. */
  18. Object.defineProperty(exports, "__esModule", { value: true });
  19. var jsonFormatter_1 = require("./jsonFormatter");
  20. exports.JsonFormatter = jsonFormatter_1.Formatter;
  21. var pmdFormatter_1 = require("./pmdFormatter");
  22. exports.PmdFormatter = pmdFormatter_1.Formatter;
  23. var proseFormatter_1 = require("./proseFormatter");
  24. exports.ProseFormatter = proseFormatter_1.Formatter;
  25. var verboseFormatter_1 = require("./verboseFormatter");
  26. exports.VerboseFormatter = verboseFormatter_1.Formatter;
  27. var stylishFormatter_1 = require("./stylishFormatter");
  28. exports.StylishFormatter = stylishFormatter_1.Formatter;
  29. var fileslistFormatter_1 = require("./fileslistFormatter");
  30. exports.FileslistFormatter = fileslistFormatter_1.Formatter;
  31. var codeFrameFormatter_1 = require("./codeFrameFormatter");
  32. exports.CodeFrameFormatter = codeFrameFormatter_1.Formatter;
  33. var tapFormatter_1 = require("./tapFormatter");
  34. exports.TapFormatter = tapFormatter_1.Formatter;
  35. var junitFormatter_1 = require("./junitFormatter");
  36. exports.JUnitFormatter = junitFormatter_1.Formatter;