0.1.0 • Published 6 years ago
dmnlint-loader v0.1.0
dmnlint-loader
Consume dmnlint config files with webpack.
import { Linter } from 'dmnlint';
import linterConfig from './.dmnlintrc';
const linter = new Linter(linterConfig);Installation
npm i dmnlint-loader -DUsage
Configure the loader in your webpack.config.js.
module.exports = {
// ...
module: {
rules: [
{
test: /\.dmnlintrc$/,
use: [
{
loader: 'dmnlint-loader',
}
]
}
]
}
};This will ensure that dmnlint configuration files can be consumed by your build.
Credits
The project is based on dmnlint-loader built by nikku.
License
MIT
0.1.0
6 years ago