Skip to content
1 min read · 120 words

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

NameTypeDefault valueDefined in
recommended{ name: string; plugins: { adk: Plugin; }; rules: Partial<Record<string, RuleEntry>>; }-eslint/index.ts:62
recommended.namestring'@nhtio/adk/eslint/recommended'eslint/index.ts:63
recommended.plugins{ adk: Plugin; }-eslint/index.ts:64
recommended.plugins.adkPluginplugineslint/index.ts:64
recommended.rulesPartial<Record<string, RuleEntry>>recommendedRuleseslint/index.ts:65