mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 11:50:00 +00:00
14 lines
153 B
JavaScript
14 lines
153 B
JavaScript
|
const config = {
|
||
|
overrides: [
|
||
|
{
|
||
|
files: "*.md",
|
||
|
options: {
|
||
|
parser: "markdown"
|
||
|
}
|
||
|
}
|
||
|
],
|
||
|
trailingComma: "none"
|
||
|
};
|
||
|
|
||
|
export default config;
|