@atlaskit/eslint-plugin-design-system
Version:
The essential plugin for use with the Atlassian Design System.
21 lines • 464 B
JavaScript
export const 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']
}
}
}
}
};