【发布时间】:2017-04-19 21:56:36
【问题描述】:
结帐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;
【问题讨论】:
标签: eslint