在Eclipse 问题视图中,是否可以添加其他列(即 Justify )?
我的动机是添加其他问题标记属性,在其中我应该能够为故意创建的问题添加理由,该理由将显示在此附加列中。
答案 0 :(得分:1)
您似乎可以通过使用org.eclipse.ui.ide.markerSupport
extension point定义新的markerField
来做到这一点,该新{
"name": "app name",
"version": "0.1.0",
"license": "MIT",
"author": "author",
"contributors": [
],
"description": "...",
"scripts": {
"ng": "ng",
"precommit": "lint-staged"
},
...,
"lint-staged": {
"*.{ts,js,sccs,json}": [
"ng lint app-name --fix",
"./node_modules/.bin/prettier --write",
"git add"
]
},
"dependencies": {
...
},
"devDependencies": {
...
"lint-staged": "^7.2.0",
"prettier": "^1.13.5",
"ts-node": "^6.1.2",
"tslint": "^5.10.0",
"typescript": "2.7.2"
}
}
对应于问题视图中的新列。