import type { ILintArgs } from '../types'; import BaseLinter from './base'; /** * linter for drive stylelint */ export default class StyleLinter extends BaseLinter { linter: string; getRunArgs(args: ILintArgs): string[]; }