src/object-spec-default-config.ts (21 lines of code) (raw):
/**
* Copyright (c) 2016-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import * as List from './list';
export const OBJECT_SPEC_DEFAULT_CONFIG = {
baseIncludes: List.of(
'RMAssertNullability',
'RMDescription',
'RMImmutableProperties',
'RMInitNewUnavailable',
),
basePlugins: List.of(
'assert-nullability',
'assume-nonnull',
'builder',
'coding',
'description',
'fetch-status',
'immutable-properties',
'init-new-unavailable',
'subclassing-restricted',
'use-cpp',
),
};