0
結帳eslint#extends部分。是否只有規則會在共享eslint配置中擴展?
配置文件可以從基本配置擴展已啓用規則集。
所以只有規則會被擴展,其他選項(parserOptions,env等)將被省略,是嗎?有沒有辦法擴展所有的eslint配置選項?
或者是下面的東西一個很好的做法?
// .eslintrc.js
var baseConfig = require('another-shareable-eslint-config');
// custom options
baseConfig.root = true;
baseConfig.env = { browser: true };
module.exports = baseConfig;