UNPKG

react-kiwi-dropdown

Version:

| Name | Type | Description | | --------------------------- | -------------------- | ----------- | | options | array | | selectedOption | string | | onCha

36 lines (28 loc) 773 B
const ruleBoilerplate = (author, description) => `/** * @fileoverview ${description} * @author ${author} * @flow */ // ---------------------------------------------------------------------------- // Rule Definition // ---------------------------------------------------------------------------- import type { JSXOpeningElement } from 'ast-types-flow'; import { generateObjSchema } from '../util/schemas'; const errorMessage = ''; const schema = generateObjSchema(); module.exports = { meta: { docs: {}, schema: [schema], }, create: (context: ESLintContext) => ({ JSXOpeningElement: (node: JSXOpeningElement) => { context.report({ node, message: errorMessage, }); }, }), }; `; module.exports = ruleBoilerplate;