Heim > Fragen und Antworten > Hauptteil
Was ich verwende @trivago/prettier-plugin-sort-imports
4.0.0
和 prettier 2.6.2
,它似乎只是简单地忽略了我在那里写的内容。或者我无法弄清楚如何正确指定我想要的内容。这是我的 .prettierrc.json
sieht so aus:
{ "printWidth": 110, "singleQuote": true, "trailingComma": "all", "arrowParens": "always", "endOfLine": "auto", "importOrder": ["^react$", "^./_app.scss$", "^@lc/(.*)$", "^components/(.*)$", "^[./]"], "importOrderSeparation": true, "importOrderSortSpecifiers": true }
Ich möchte react
出现在顶部,然后第三方模块、任何 .scss
或 .css
文件应该出现在其后,然后基本上是其他任何内容。但我还没有走到那一步。到目前为止,它甚至无法将 react
ganz oben sein, ich weiß nicht warum.
Ich bin für jede Hilfe dankbar!
P粉5761849332024-03-20 10:32:26
这样的事情会让你走得更远。
{ "importOrder": ["^react", "^.(css|scss)$", "", "^components/(.*)$", "^[./]"], "importOrderSeparation": true, "importOrderSortSpecifiers": true }