mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-04-25 06:58:30 -04:00
I also reworked the Linters section in `CONTRIBUTING.md` a bit and switched the `prettier` config to a flat config. Co-authored-by: Veeck <github@veeck.de>
13 lines
153 B
JavaScript
13 lines
153 B
JavaScript
const config = {
|
|
overrides: [
|
|
{
|
|
files: "*.md",
|
|
options: {
|
|
parser: "markdown"
|
|
}
|
|
}
|
|
],
|
|
trailingComma: "none"
|
|
};
|
|
|
|
export default config;
|