@atlaskit/eslint-plugin-design-system
Version:
The essential plugin for use with the Atlassian Design System.
14 lines (13 loc) • 445 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.getConfig = void 0;
var defaultConfig = {
failSilently: false,
enableUnsafeAutofix: false,
patterns: ['style-object', 'font-weight', 'font-family', 'untokenized-properties', 'banned-properties', 'restricted-capitalisation']
};
var getConfig = exports.getConfig = function getConfig(overrides) {
return Object.assign({}, defaultConfig, overrides);
};