mirror of https://gitee.com/openkylin/npm.git
18 lines
357 B
JavaScript
18 lines
357 B
JavaScript
/* This file is automatically added by @npmcli/template-oss. Do not edit. */
|
|
|
|
'use strict'
|
|
|
|
const { readdirSync: readdir } = require('fs')
|
|
|
|
const localConfigs = readdir(__dirname)
|
|
.filter((file) => file.startsWith('.eslintrc.local.'))
|
|
.map((file) => `./${file}`)
|
|
|
|
module.exports = {
|
|
root: true,
|
|
extends: [
|
|
'@npmcli',
|
|
...localConfigs,
|
|
],
|
|
}
|