# dmnlint-pack-config **Repository Path**: mirrors_bpmn-io/dmnlint-pack-config ## Basic Information - **Project Name**: dmnlint-pack-config - **Description**: Pack dmnlint configuration into a browser consumable bundle - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-08-24 - **Last Updated**: 2025-12-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # dmnlint-pack-config [![CI](https://github.com/bpmn-io/dmnlint-pack-config/workflows/CI/badge.svg)](https://github.com/bpmn-io/dmnlint-pack-config/actions?query=workflow%3ACI) Pack a [dmnlint](https://github.com/bpmn-io/dmnlint) configuration as a consumable bundle. ## Usage Pack a configuration using the `dmnlint-pack-config` executable: ``` npx dmnlint-pack-config -c .dmnlintrc -o packed-config.js -t es ``` Consume the packed config as part of your web-modeler: ```javascript import { Linter } from 'dmnlint'; import linterConfig from './packed-config'; var linter = new Linter(linterConfig); const results = await linter.lint(modelRoot); ``` ## License MIT