UNPKG

792 BJavaScriptView Raw
1'use strict';
2
3Object.defineProperty(exports, '__esModule', {
4 value: true
5});
6exports.default = void 0;
7
8/**
9 * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
10 *
11 * This source code is licensed under the MIT license found in the
12 * LICENSE file in the root directory of this source tree.
13 */
14const config = {
15 comment: ' A comment',
16 condition: () => true,
17 deprecate: () => false,
18 deprecatedConfig: {
19 key: () => 'Deprecation message'
20 },
21 error: () => {},
22 exampleConfig: {
23 key: 'value',
24 test: 'case'
25 },
26 recursive: true,
27 recursiveDenylist: [],
28 title: {
29 deprecation: 'Deprecation Warning',
30 error: 'Validation Error',
31 warning: 'Validation Warning'
32 },
33 unknown: () => {}
34};
35var _default = config;
36exports.default = _default;