mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 16:14:02 +00:00
We’re configuring Prettier with bracketSpacing: false. Generated by ESLint. Signed-off-by: Anders Kaseorg <anders@zulip.com>
12 lines
337 B
JavaScript
12 lines
337 B
JavaScript
module.exports = ({file}) => ({
|
|
parser: file.extname === ".scss" ? "postcss-scss" : false,
|
|
plugins: {
|
|
// Warning: despite appearances, order is significant
|
|
"postcss-nested": {},
|
|
"postcss-extend-rule": {},
|
|
"postcss-simple-vars": {},
|
|
"postcss-calc": {},
|
|
autoprefixer: {},
|
|
},
|
|
});
|