Cardigann: disable the ignore unmatched properties.

and fix any yaml indexers that fail the syntax checking.

the option to ignoreUnmatchedProperties was enabled for #1549 and should have been turned off again once that task was completed.

leaving it enabled caused several unexplained behaviours in indexers where some statements were ignore by cardigann despite the intentions of the writer, and were not picked up during testing.
This commit is contained in:
Garfield69
2020-04-13 09:45:57 +12:00
parent 5d47cf060a
commit b5f5e7d619
14 changed files with 55 additions and 53 deletions

View File

@@ -93,7 +93,7 @@ namespace Jackett.Common.Services
var deserializer = new DeserializerBuilder()
.WithNamingConvention(CamelCaseNamingConvention.Instance)
.IgnoreUnmatchedProperties()
// .IgnoreUnmatchedProperties()
.Build();
try