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