/** * Copyright (c) 2020, salesforce.com, inc. * All rights reserved. * SPDX-License-Identifier: MIT * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT */ import { CLIEngine } from 'eslint'; /** * Rollup plugin for performing eslint rule validation. * This plugin accepts all ESLint CLIEngine config options (https://eslint.org/docs/developer-guide/nodejs-api#cliengine) * @param options ESLint CLIEngine Options object */ export default function eslint(options?: CLIEngine.Options): { name: string; transform(code: any, id: any): void; }; //# sourceMappingURL=rollup-plugin-eslint.d.ts.map