结帐eslint#extends部分。
配置文件可以从基本配置扩展启用规则集。
因此只会扩展规则,其他选项(parserOptions,env等)将被省略,是吗?有没有办法扩展所有的eslint配置选项?
或以下是一个好习惯?
// .eslintrc.js
var baseConfig = require('another-shareable-eslint-config');
// custom options
baseConfig.root = true;
baseConfig.env = { browser: true };
module.exports = baseConfig;
答案 0 :(得分:0)
它也将扩展parserOptions
和env
。您可以使用现有的配置文件或插件进行扩展。