UNPKG

407 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3const cosmiconfig_1 = require("cosmiconfig");
4function getConf(dir) {
5 const explorer = cosmiconfig_1.cosmiconfigSync('husky');
6 const { config = {} } = explorer.search(dir) || {};
7 const defaults = {
8 skipCI: true
9 };
10 return Object.assign(Object.assign({}, defaults), config);
11}
12exports.getConf = getConf;