@atlaskit/eslint-plugin-design-system
Version:
The essential plugin for use with the Atlassian Design System.
27 lines (26 loc) • 585 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ruleSchema = void 0;
var ruleSchema = exports.ruleSchema = {
type: 'array',
items: {
type: 'object',
properties: {
failSilently: {
type: 'boolean'
},
enableUnsafeAutofix: {
type: 'boolean'
},
patterns: {
type: 'array',
items: {
type: 'string',
enum: ['style-object', 'font-weight', 'font-family', 'untokenized-properties', 'banned-properties', 'restricted-capitalisation']
}
}
}
}
};