19 lines
340 B
JavaScript
19 lines
340 B
JavaScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @type {import('prettier').Config}
|
|
*/
|
|
module.exports = {
|
|
bracketSpacing: false,
|
|
singleQuote: true,
|
|
trailingComma: 'all',
|
|
arrowParens: 'avoid',
|
|
singleAttributePerLine: true,
|
|
htmlWhitespaceSensitivity: 'strict',
|
|
endOfLine: 'lf',
|
|
};
|