data-cap
    Preparing search index...

    Variable defaultConst

    default: {
        rules: {
            "no-node-fs": RuleModuleWithName<
                "noNodeFs",
                [RuleOptions],
                unknown,
                RuleListener,
            >;
            "no-raw-external-io": RuleModuleWithName<
                "noRawExternalIo",
                [RuleOptions],
                unknown,
                RuleListener,
            >;
            "stable-operation-reference": RuleModuleWithName<
                "inlineFunctionLiteral"
                | "recreatedPerCall",
                [],
                unknown,
                RuleListener,
            >;
        };
    } = ...

    data-cap/eslint-plugin -- a flat-config-shaped plugin object ({ rules: { ... } }), consumed as:

    import dataCapPlugin from "data-cap/eslint-plugin"; export default [{ plugins: { "data-cap": dataCapPlugin }, rules: { "data-cap/stable-operation-reference": "warn" } }];

    A 6th public entry point alongside ., ./runtime, ./build, ./helpers, and ./evidence.

    Type Declaration

    • rules: {
          "no-node-fs": RuleModuleWithName<
              "noNodeFs",
              [RuleOptions],
              unknown,
              RuleListener,
          >;
          "no-raw-external-io": RuleModuleWithName<
              "noRawExternalIo",
              [RuleOptions],
              unknown,
              RuleListener,
          >;
          "stable-operation-reference": RuleModuleWithName<
              "inlineFunctionLiteral"
              | "recreatedPerCall",
              [],
              unknown,
              RuleListener,
          >;
      }

      Every rule this plugin ships, keyed by its flat-config rule name.

      • no-node-fs: RuleModuleWithName<"noNodeFs", [RuleOptions], unknown, RuleListener>

        See noNodeFs.

      • no-raw-external-io: RuleModuleWithName<"noRawExternalIo", [RuleOptions], unknown, RuleListener>
      • stable-operation-reference: RuleModuleWithName<
            "inlineFunctionLiteral"
            | "recreatedPerCall",
            [],
            unknown,
            RuleListener,
        >