mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-11-09 03:08:09 +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;
|