1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 18:50:29 -04:00
jarv.is/postcss.config.js
Jake Jarvis 323b3dd9f6
add Prettier to workflow 🎀 (#128)
* prettier init

* prettier ignore

* run on everything 😬

* add prettier check script

* update deps

* Update .prettierignore
2020-05-06 12:19:21 -04:00

30 lines
604 B
JavaScript

module.exports = {
options: {
map: false
},
plugins: [
require("autoprefixer")(),
require("postcss-clean")({
compatibility: "*",
level: 0,
format: {
breaks: {
afterAtRule: true,
afterBlockBegins: true,
afterBlockEnds: true,
afterComment: true,
afterRuleEnds: true,
beforeBlockEnds: true
},
spaces: {
beforeBlockBegins: true
},
semicolonAfterLastProperty: true
}
}),
require("postcss-reporter")({
clearReportedMessages: true
})
]
};