14 lines
415 B
TypeScript
14 lines
415 B
TypeScript
import devWarning from '../../../vc-util/warning';
|
|
import type { LinterInfo } from './interface';
|
|
|
|
export function lintWarning(message: string, info: LinterInfo) {
|
|
const { path, parentSelectors } = info;
|
|
|
|
devWarning(
|
|
false,
|
|
`[Ant Design Vue CSS-in-JS] ${path ? `Error in '${path}': ` : ''}${message}${
|
|
parentSelectors.length ? ` Selector info: ${parentSelectors.join(' -> ')}` : ''
|
|
}`,
|
|
);
|
|
}
|