Documentation for Simbo's Packages
    Preparing search index...

    Interface ConfigsRecord

    A config object export in @simbo/eslint-config.

    This interface defines the structure of the ESLint configuration objects that are exported from the various config files in the package.

    interface ConfigsRecord {
        browser: { recommended: Config<RulesRecord>[] };
        node: { recommended: Config<RulesRecord>[] };
    }
    Index

    Properties

    Properties

    browser: { recommended: Config<RulesRecord>[] }

    ESLint configurations for browser projects.

    Type Declaration

    • recommended: Config<RulesRecord>[]

      A recommended ESLint config for browser projects.

    node: { recommended: Config<RulesRecord>[] }

    ESLint configurations for Node.js projects.

    Type Declaration

    • recommended: Config<RulesRecord>[]

      A recommended ESLint config for Node.js projects.