19 lines
451 B
JavaScript
Executable File
19 lines
451 B
JavaScript
Executable File
// eslint-disable-next-line no-undef
|
|
module.exports = {
|
|
trailingComma: 'all',
|
|
tabWidth: 4,
|
|
semi: true,
|
|
singleQuote: true,
|
|
bracketSameLine: true,
|
|
plugins: ['@trivago/prettier-plugin-sort-imports'],
|
|
importOrder: ['^@wordpress/(.*)$', '<THIRD_PARTY_MODULES>', '^[./]'],
|
|
overrides: [
|
|
{
|
|
files: ['**/*.html'],
|
|
options: {
|
|
singleQuote: false,
|
|
},
|
|
},
|
|
],
|
|
};
|