ds4/prettier.config.js

17 lines
256 B
JavaScript
Raw Normal View History

2023-07-10 22:23:13 +02:00
// SPDX-FileCopyrightText: 2021 Johannes Loher
//
// SPDX-License-Identifier: MIT
2025-02-22 20:50:06 +01:00
// @ts-check
/**
* @type {import("prettier").Config}
*/
2023-07-10 22:23:13 +02:00
export default {
semi: true,
trailingComma: "all",
singleQuote: false,
printWidth: 120,
tabWidth: 2,
};