diff --git a/src/language-css/printer-postcss.js b/src/language-css/printer-postcss.js index 180295c4..50818bd5 100644 --- a/src/language-css/printer-postcss.js +++ b/src/language-css/printer-postcss.js @@ -196,25 +196,6 @@ function genericPrint(path, options, print) { : ";" ]); } - case "css-import": { - return concat([ - "@", - maybeToLowerCase(node.name), - " ", - node.directives ? concat([node.directives, " "]) : "", - adjustStrings(node.importPath, options), - node.nodes.length > 0 - ? concat([ - " {", - indent( - concat([softline, printNodeSequence(path, options, print)]) - ), - softline, - "}" - ]) - : ";" - ]); - } // postcss-media-query-parser case "media-query-list": { const parts = [];