Apply prettier over all files

This commit is contained in:
Luis Alvarez
2020-10-01 20:40:40 -05:00
parent 2314ad760a
commit 0ef6449aff
72 changed files with 648 additions and 652 deletions

View File

@@ -1,18 +1,18 @@
module.exports = {
plugins: [
"tailwindcss",
"postcss-flexbugs-fixes",
'tailwindcss',
'postcss-flexbugs-fixes',
[
"postcss-preset-env",
'postcss-preset-env',
{
autoprefixer: {
flexbox: "no-2009",
flexbox: 'no-2009',
},
stage: 3,
features: {
"custom-properties": false,
'custom-properties': false,
},
},
],
],
};
}