eslint plugin files rename from ts to tsx
Summary: mass rename files Reviewed By: nikoant Differential Revision: D33890201 fbshipit-source-id: ac73fb040519a566447981bad37b8c78878a5c3d
This commit is contained in:
committed by
Facebook GitHub Bot
parent
a474a0c2f2
commit
2476472344
34
desktop/eslint-plugin-flipper/src/index.tsx
Normal file
34
desktop/eslint-plugin-flipper/src/index.tsx
Normal file
@@ -0,0 +1,34 @@
|
||||
/**
|
||||
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*
|
||||
* @format
|
||||
*/
|
||||
|
||||
import noRelativeImportsAcrossPackages, {
|
||||
RULE_NAME as noRelativeImportsAcrossPackagesRuleName,
|
||||
} from './rules/noRelativeImportsAcrossPackages';
|
||||
import noElectronRemoteImports, {
|
||||
RULE_NAME as noElectronRemoteImportsRuleName,
|
||||
} from './rules/noElectronRemoteImports';
|
||||
import noConsoleErrorWithoutContext, {
|
||||
RULE_NAME as noConsoleErrorWithoutContextRuleName,
|
||||
} from './rules/noConsoleErrorWithoutContext';
|
||||
import noTsFileExtension, {
|
||||
RULE_NAME as noTsFileExtensionRuleName,
|
||||
} from './rules/noTsFileExtension';
|
||||
import noIPrefixInterfaces, {
|
||||
RULE_NAME as noIPrefixInterfacesRuleName,
|
||||
} from './rules/noIPrefixInterfaces';
|
||||
|
||||
module.exports = {
|
||||
rules: {
|
||||
[noRelativeImportsAcrossPackagesRuleName]: noRelativeImportsAcrossPackages,
|
||||
[noElectronRemoteImportsRuleName]: noElectronRemoteImports,
|
||||
[noConsoleErrorWithoutContextRuleName]: noConsoleErrorWithoutContext,
|
||||
[noTsFileExtensionRuleName]: noTsFileExtension,
|
||||
[noIPrefixInterfacesRuleName]: noIPrefixInterfaces,
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user