Files
Nikolay Vitkov 72d825272f chore: use ESM instead of CJS (#2487)
Also remove the `.mjs` as we are in a module repo.
2026-08-07 07:31:54 +00:00

19 lines
338 B
JavaScript

/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @type {import('prettier').Config}
*/
export default {
bracketSpacing: false,
singleQuote: true,
trailingComma: 'all',
arrowParens: 'avoid',
singleAttributePerLine: true,
htmlWhitespaceSensitivity: 'strict',
endOfLine: 'lf',
};