monorepo/packages/core/eslint/lib.js

23 lines
490 B
JavaScript
Raw Normal View History

2024-06-25 21:59:50 +08:00
/** @type {import("eslint").Linter.Config} */
module.exports = {
env: {
node: true,
},
extends: [
// airbnb规范
// https://www.npmjs.com/package/eslint-config-airbnb-base
'airbnb-base',
'./base',
],
ignorePatterns: [
// 忽略的文件
'node_modules/',
],
overrides: [
{
// 仅格式化.js、.jsx、.json后缀的文件
files: ['*.js?(x)', '*.json'],
},
],
};