bpmnlint-loader

0.1.6 • Public • Published

bpmnlint-loader

CI

Consume bpmnlint config files with webpack.

import { Linter } from 'bpmnlint';

import linterConfig from './.bpmnlintrc';

const linter = new Linter(linterConfig);

Installation

npm i bpmnlint-loader -D

Usage

Configure the loader in your webpack.config.js.

module.exports = {
  // ...
  module: {
    rules: [
      {
        test: /\.bpmnlintrc$/,
        use: [
          {
            loader: 'bpmnlint-loader',
          }
        ]
      }
    ]
  }
};

This will ensure that bpmnlint configuration files can be consumed by your build.

License

MIT

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
0.1.68,669latest

Version History

VersionDownloads (Last 7 Days)Published
0.1.68,669
0.1.51,051
0.1.4764
0.1.349
0.1.20
0.1.10
0.1.00