@@ -179,9 +179,6 @@ export const bidsIssues: IssueDefinitionRecord = {
179179 severity : 'error' ,
180180 reason : 'We were unable to read this file.' ,
181181 } ,
182- }
183-
184- const hedIssues : IssueDefinitionRecord = {
185182 HED_ERROR : {
186183 severity : 'error' ,
187184 reason : 'The validation on this HED string returned an error.' ,
@@ -190,33 +187,6 @@ const hedIssues: IssueDefinitionRecord = {
190187 severity : 'warning' ,
191188 reason : 'The validation on this HED string returned a warning.' ,
192189 } ,
193- HED_INTERNAL_ERROR : {
194- severity : 'error' ,
195- reason : 'An internal error occurred during HED validation.' ,
196- } ,
197- HED_INTERNAL_WARNING : {
198- severity : 'warning' ,
199- reason : 'An internal warning occurred during HED validation.' ,
200- } ,
201- HED_MISSING_VALUE_IN_SIDECAR : {
202- severity : 'warning' ,
203- reason :
204- 'The json sidecar does not contain this column value as a possible key to a HED string.' ,
205- } ,
206- HED_VERSION_NOT_DEFINED : {
207- severity : 'warning' ,
208- reason :
209- "You should define 'HEDVersion' for this file. If you don't provide this information, the HED validation will use the latest version available." ,
210- } ,
211- }
212-
213- export const hedOldToNewLookup : Record < number , Partial < keyof IssueDefinitionRecord > > = {
214- 104 : 'HED_ERROR' ,
215- 105 : 'HED_WARNING' ,
216- 106 : 'HED_INTERNAL_ERROR' ,
217- 107 : 'HED_INTERNAL_WARNING' ,
218- 108 : 'HED_MISSING_VALUE_IN_SIDECAR' ,
219- 109 : 'HED_VERSION_NOT_DEFINED' ,
220190}
221191
222- export const nonSchemaIssues = { ...bidsIssues , ... hedIssues }
192+ export const nonSchemaIssues = { ...bidsIssues }
0 commit comments