diff options
-rw-r--r-- | src/data/checks.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/data/checks.js b/src/data/checks.js index 4097115f..afd2a04c 100644 --- a/src/data/checks.js +++ b/src/data/checks.js @@ -553,6 +553,11 @@ export function reportContentTextErrors(wikiData, { description: 'description', }; + const artworkShape = { + source: 'artwork source', + originDetails: 'artwork origin details', + }; + const commentaryShape = { body: 'commentary body', artistText: 'commentary artist text', @@ -570,6 +575,7 @@ export function reportContentTextErrors(wikiData, { additionalFiles: additionalFileShape, commentary: commentaryShape, creditingSources: commentaryShape, + coverArtworks: artworkShape, }], ['artTagData', { @@ -583,6 +589,7 @@ export function reportContentTextErrors(wikiData, { ['flashData', { commentary: commentaryShape, creditingSources: commentaryShape, + coverArtwork: artworkShape, }], ['flashActData', { @@ -617,6 +624,7 @@ export function reportContentTextErrors(wikiData, { lyrics: lyricsShape, midiProjectFiles: additionalFileShape, sheetMusicFiles: additionalFileShape, + trackArtworks: artworkShape, }], ['wikiInfo', { |