UNPKG

eslint-config-interfaced

Version:

ESLint config for the approaches adopted by Interfaced company

15 lines (13 loc) 254 B
const path = require('path'); /** * @param {string} overridesName * @return {Object} */ module.exports = (overridesName) => Object.assign( { extends: [ path.join(__dirname, '..', 'index.js') ] }, require(`../overrides/${overridesName}`) );