Variable: configs
ts
const configs: {
recommended: {
name: string;
plugins: {
adk: Plugin;
};
rules: Partial<Record<string, RuleEntry>>;
};
};Defined in: eslint/index.ts:61
Named config presets. recommended enables every rule at error and registers the plugin under the adk namespace — spread it into a flat config to adopt the full set.
Type Declaration
| Name | Type | Default value | Defined in |
|---|---|---|---|
recommended | { name: string; plugins: { adk: Plugin; }; rules: Partial<Record<string, RuleEntry>>; } | - | eslint/index.ts:62 |
recommended.name | string | '@nhtio/adk/eslint/recommended' | eslint/index.ts:63 |
recommended.plugins | { adk: Plugin; } | - | eslint/index.ts:64 |
recommended.plugins.adk | Plugin | plugin | eslint/index.ts:64 |
recommended.rules | Partial<Record<string, RuleEntry>> | recommendedRules | eslint/index.ts:65 |