UNPKG

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