2 Star 0 Fork 0

mirrors_bpmn-io/bpmn-moddle

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
eslint.config.js 1.05 KB
一键复制 编辑 原始数据 按行查看 历史
import bpmnIoPlugin from 'eslint-plugin-bpmn-io';
import babelParser from '@babel/eslint-parser';
const files = {
build: [
'tasks/**/*.cjs'
],
test: [
'test/**/*.js',
'test/**/*.cjs'
],
ignored: [
'dist'
]
};
export default [
{
'ignores': files.ignored
},
// build
...bpmnIoPlugin.configs.node.map(config => {
return {
...config,
files: files.build
};
}),
// lib + test
...bpmnIoPlugin.configs.recommended.map(config => {
return {
...config,
ignores: files.build
};
}),
// test
...bpmnIoPlugin.configs.mocha.map(config => {
return {
...config,
files: files.test
};
}),
// other
// hook up babel parser
{
files: [ '**/*.js', '**/*.mjs' ],
languageOptions: {
parser: babelParser,
parserOptions: {
requireConfigFile: false,
babelOptions: {
babelrc: false,
configFile: false,
plugins: [
'@babel/plugin-syntax-import-attributes'
]
},
}
}
}
];
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_bpmn-io/bpmn-moddle.git
git@gitee.com:mirrors_bpmn-io/bpmn-moddle.git
mirrors_bpmn-io
bpmn-moddle
bpmn-moddle
main

搜索帮助

0d507c66 1850385 C8b1a773 1850385