eslint-plugin-format-lua
Version:
��# e s l i n t - p l u g i n - f o r m a t - l u a
44 lines (41 loc) • 1.26 kB
text/typescript
import * as eslint from 'eslint';
import { Linter } from 'eslint';
declare const _default: {
parserPlain: eslint.ESLint.ObjectMetaProperties & {
parseForESLint(text: string, options?: any): Linter.ESLintParseResult;
};
rules: {
stylua: {
create(context: eslint.Rule.RuleContext): {
Program(): void;
};
meta: {
docs: {
category: string;
description: string;
};
fixable: "whitespace";
messages: {
insert: string;
delete: string;
replace: string;
};
schema: {
additionalProperties: true;
properties: {
language: {
required: true;
type: "string";
};
languageOptions: {
type: "object";
};
};
type: "object";
}[];
type: "layout";
};
};
};
};
export { _default as default };