Skip to content

Commit ad3d3cb

Browse files
committed
[T3CMS] Use conventional inspection name
* add descriptions
1 parent 1d71a54 commit ad3d3cb

File tree

3 files changed

+28
-0
lines changed

3 files changed

+28
-0
lines changed

typo3-cms/src/main/java/com/cedricziel/idea/typo3/javaScript/codeInspection/MissingModulePHPInspection.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ public String getDisplayName() {
2222
return "Missing JavaScript module";
2323
}
2424

25+
@NotNull
26+
@Override
27+
public String getShortName() {
28+
return "MissingModulePHP";
29+
}
30+
2531
@NotNull
2632
@Override
2733
public PsiElementVisitor buildRealVisitor(@NotNull ProblemsHolder problemsHolder, boolean b) {
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<html>
2+
<body>
3+
<p>
4+
The module you referenced could not be found. Make sure you placed it correctly
5+
in the filesystem.
6+
</p>
7+
<!-- tooltip end -->
8+
<p>This inspection highlights references to unresolved JavaScript modules.</p>
9+
<p>Unresolved could mean there is no core attached to your current project.</p>
10+
</body>
11+
</html>
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<html>
2+
<body>
3+
<p>
4+
The module you referenced could not be found. Make sure you placed it correctly
5+
in the filesystem.
6+
</p>
7+
<!-- tooltip end -->
8+
<p>This inspection highlights references to unresolved JavaScript modules.</p>
9+
<p>Unresolved could mean there is no core attached to your current project.</p>
10+
</body>
11+
</html>

0 commit comments

Comments
 (0)