简体   繁体   中英

How to show full WebStorm information in event log window of IntelliJ?

I have a git pre-commit, like this

{
  "gitHooks": {
    "pre-commit": "lint-staged"
  },
  "lint-staged": {
    "*.{js,jsx,less,md,json}": [
      "prettier --write"
    ],
    "*.ts?(x)": [
      "prettier --parser=typescript --write"
    ]
  }
}

Sometime I will get errors when run git commit, like this:

错误

I want to see full information, so I clicked the "show balloon" link

显示气球链接

now I get full information, but IDEA not formatting the full information, It's very difficult to read...

不格式化信息

Is there a way to show full information and formatting to read?

Regrettably, there is no option beside "Show balloon" to see full information.

It's a known issue, please vote for feature request here: https://youtrack.jetbrains.com/issue/IDEA-156267

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM