mirror of
https://gh.wpcy.net/https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-04-29 08:14:28 +08:00
26 lines
696 B
JavaScript
26 lines
696 B
JavaScript
/** @type {import('stylelint').PublicApi['formatters']} */
|
|
const formatters = {
|
|
get compact() {
|
|
return import('./compactFormatter.mjs').then((m) => m.default);
|
|
},
|
|
get github() {
|
|
return import('./githubFormatter.mjs').then((m) => m.default);
|
|
},
|
|
get json() {
|
|
return import('./jsonFormatter.mjs').then((m) => m.default);
|
|
},
|
|
get string() {
|
|
return import('./stringFormatter.mjs').then((m) => m.default);
|
|
},
|
|
get tap() {
|
|
return import('./tapFormatter.mjs').then((m) => m.default);
|
|
},
|
|
get unix() {
|
|
return import('./unixFormatter.mjs').then((m) => m.default);
|
|
},
|
|
get verbose() {
|
|
return import('./verboseFormatter.mjs').then((m) => m.default);
|
|
},
|
|
};
|
|
|
|
export default formatters;
|