mirror of
https://github.com/facebook/lexical.git
synced 2025-05-16 22:48:52 +08:00
17 lines
388 B
JavaScript
17 lines
388 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
bracketSpacing: false,
|
|
singleQuote: true,
|
|
bracketSameLine: true,
|
|
printWidth: 80,
|
|
trailingComma: 'all',
|
|
htmlWhitespaceSensitivity: 'ignore',
|
|
attributeGroups: ['^class$', '^(id|name)$', '$DEFAULT', '^aria-', '^data-'],
|
|
attributeSort: 'ASC',
|
|
plugins: [
|
|
'prettier-plugin-tailwindcss',
|
|
'prettier-plugin-organize-attributes',
|
|
],
|
|
};
|