suchen

Heim  >  Fragen und Antworten  >  Hauptteil

prettier-plugin-sort-imports respektiert die Importreihenfolge nicht

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粉546179835P粉546179835238 Tage vor458

Antworte allen(1)Ich werde antworten

  • P粉576184933

    P粉5761849332024-03-20 10:32:26

    这样的事情会让你走得更远。

    {
        "importOrder": ["^react", "^.(css|scss)$", "", "^components/(.*)$", "^[./]"],
        "importOrderSeparation": true,
        "importOrderSortSpecifiers": true
    }

    Antwort
    0
  • StornierenAntwort