When running the linter I cannot get rid of the following warning:
Linting in help package: User
hyperhelp.json:
warning @ 1:1 Topic 'other2.txt' appears in the index but not in 'OTHER2.txt'
This is my hyperhelp.json:
{
"package": "User",
"description": "Help for User Package",
"doc_root": "help/",
"help_files": {
"index.txt": [
"Index file for User package",
{
"topic": "index.txt",
"caption": "Index file",
"aliases": ["index file"]
}
],
"sample.txt": [
"Sample File",
],
"other1.txt": [
"Other One"
],
"OTHER2.txt": [
"Other Two",
]
},
"help_contents": [
"index.txt",
]
}
This is my OTHER2.txt:
%hyperhelp title="Other Two" date="2020-02-21"
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
The same warning does not happen for other1.txt. They are essentially identical except the filename is lowercase in the former and uppercase in the latter.
How can I fix the warning?