16 lines
256 B
JavaScript
16 lines
256 B
JavaScript
// SPDX-FileCopyrightText: 2021 Johannes Loher
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
// @ts-check
|
|
|
|
/**
|
|
* @type {import("prettier").Config}
|
|
*/
|
|
export default {
|
|
semi: true,
|
|
trailingComma: "all",
|
|
singleQuote: false,
|
|
printWidth: 120,
|
|
tabWidth: 2,
|
|
};
|