default_config.js 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', {
  3. value: true
  4. });
  5. var _deprecated;
  6. function _load_deprecated() {
  7. return (_deprecated = require('./deprecated'));
  8. }
  9. var _warnings;
  10. function _load_warnings() {
  11. return (_warnings = require('./warnings'));
  12. }
  13. var _errors;
  14. function _load_errors() {
  15. return (_errors = require('./errors'));
  16. }
  17. var _condition;
  18. function _load_condition() {
  19. return (_condition = _interopRequireDefault(require('./condition')));
  20. }
  21. var _utils;
  22. function _load_utils() {
  23. return (_utils = require('./utils'));
  24. }
  25. function _interopRequireDefault(obj) {
  26. return obj && obj.__esModule ? obj : {default: obj};
  27. }
  28. /**
  29. * Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
  30. *
  31. * This source code is licensed under the MIT license found in the
  32. * LICENSE file in the root directory of this source tree.
  33. *
  34. *
  35. */
  36. exports.default = {
  37. comment: '',
  38. condition: (_condition || _load_condition()).default,
  39. deprecate: (_deprecated || _load_deprecated()).deprecationWarning,
  40. deprecatedConfig: {},
  41. error: (_errors || _load_errors()).errorMessage,
  42. exampleConfig: {},
  43. recursive: true,
  44. recursiveBlacklist: [],
  45. title: {
  46. deprecation: (_utils || _load_utils()).DEPRECATION,
  47. error: (_utils || _load_utils()).ERROR,
  48. warning: (_utils || _load_utils()).WARNING
  49. },
  50. unknown: (_warnings || _load_warnings()).unknownOptionWarning
  51. };