From a2588a822583610fe3c8e745e5e96d127fe029f3 Mon Sep 17 00:00:00 2001 From: Benedikt Franke Date: Thu, 13 Jul 2023 10:11:37 +0200 Subject: [PATCH] Add clickable links to PHPStan output --- phpstan.neon | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/phpstan.neon b/phpstan.neon index fa6f9db..2f93f14 100644 --- a/phpstan.neon +++ b/phpstan.neon @@ -1,6 +1,9 @@ parameters: - level: max - paths: - - src - - tests - tmpDir: .build/phpstan/ + level: max + paths: + - src + - tests + tmpDir: .build/phpstan + # Install https://plugins.jetbrains.com/plugin/7677-awesome-console to make those links clickable + editorUrl: '%%relFile%%:%%line%%' + editorUrlTitle: '%%relFile%%:%%line%%'