mirror of
https://github.com/facebook/lexical.git
synced 2025-08-06 16:39:33 +08:00
13 lines
276 B
JavaScript
13 lines
276 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
bracketSpacing: false,
|
|
singleQuote: true,
|
|
bracketSameLine: true,
|
|
printWidth: 80,
|
|
trailingComma: 'all',
|
|
htmlWhitespaceSensitivity: 'ignore',
|
|
attributeGroups: ['$DEFAULT', '^data-'],
|
|
plugins: ['prettier-plugin-tailwindcss'],
|
|
};
|