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