style: fix organize-imports to work with tailwindcss prettier plugin (#2957) [skip ci]
parent
6c0fd40877
commit
4b855b8114
@ -0,0 +1,5 @@
|
|||||||
|
module.exports = {
|
||||||
|
plugins: [require('./merged-prettier-plugin.js')],
|
||||||
|
singleQuote: true,
|
||||||
|
trailingComma: 'es5',
|
||||||
|
};
|
@ -0,0 +1,21 @@
|
|||||||
|
/* eslint-disable */
|
||||||
|
const tailwind = require('prettier-plugin-tailwindcss');
|
||||||
|
const organizeImports = require('prettier-plugin-organize-imports');
|
||||||
|
|
||||||
|
const combinedFormatter = {
|
||||||
|
...tailwind,
|
||||||
|
parsers: {
|
||||||
|
...tailwind.parsers,
|
||||||
|
...Object.keys(organizeImports.parsers).reduce((acc, key) => {
|
||||||
|
acc[key] = {
|
||||||
|
...tailwind.parsers[key],
|
||||||
|
preprocess(code, options) {
|
||||||
|
return organizeImports.parsers[key].preprocess(code, options);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
return acc;
|
||||||
|
}, {}),
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports = combinedFormatter;
|
Loading…
Reference in new issue