13 lines
225 B
JavaScript
13 lines
225 B
JavaScript
const { defineConfig } = require('@coze-arch/eslint-config');
|
|
|
|
module.exports = defineConfig({
|
|
packageRoot: __dirname,
|
|
preset: 'web',
|
|
rules: {},
|
|
languageOptions: {
|
|
globals: {
|
|
DataItem: true,
|
|
},
|
|
},
|
|
});
|