16 lines
339 B
JavaScript
16 lines
339 B
JavaScript
// eslint-disable-next-line import/no-extraneous-dependencies
|
|
const {inspect: {defaultOptions}} = require('util');
|
|
|
|
defaultOptions.breakLength = 160;
|
|
defaultOptions.compact = 6;
|
|
defaultOptions.sorted = true;
|
|
|
|
exports.hooks = {
|
|
'@flecks/core.config': () => ({
|
|
/**
|
|
* The ID of your application.
|
|
*/
|
|
id: 'flecks',
|
|
}),
|
|
};
|