@sumup-oss/eslint-plugin-circuit-ui
Version:
ESLint rules to lint Circuit UI.
39 lines (38 loc) • 2.12 kB
JavaScript
;
/**
* Copyright 2023, SumUp Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.rules = void 0;
const component_lifecycle_imports_1 = require("./component-lifecycle-imports");
const no_invalid_custom_properties_1 = require("./no-invalid-custom-properties");
const no_deprecated_custom_properties_1 = require("./no-deprecated-custom-properties");
const no_deprecated_components_1 = require("./no-deprecated-components");
const no_deprecated_props_1 = require("./no-deprecated-props");
const no_renamed_props_1 = require("./no-renamed-props");
const prefer_custom_properties_1 = require("./prefer-custom-properties");
const renamed_package_scope_1 = require("./renamed-package-scope");
const no_renamed_components_1 = require("./no-renamed-components");
/* eslint-disable */
exports.rules = {
'component-lifecycle-imports': component_lifecycle_imports_1.componentLifecycleImports,
'no-invalid-custom-properties': no_invalid_custom_properties_1.noInvalidCustomProperties,
'no-deprecated-custom-properties': no_deprecated_custom_properties_1.noDeprecatedCustomProperties,
'no-deprecated-components': no_deprecated_components_1.noDeprecatedComponents,
'no-deprecated-props': no_deprecated_props_1.noDeprecatedProps,
'no-renamed-props': no_renamed_props_1.noRenamedProps,
'prefer-custom-properties': prefer_custom_properties_1.preferCustomProperties,
'renamed-package-scope': renamed_package_scope_1.renamedPackageScope,
'no-renamed-components': no_renamed_components_1.noRenamedComponents,
};