Skip to content

Commit

Permalink
Removed failing lint word
Browse files Browse the repository at this point in the history
  • Loading branch information
VitoAlbano committed Feb 3, 2021
1 parent a162d0f commit a6972b0
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ const elementCustom: ContentTypeModelEntry = {
dataType: 'ck:propA',
defaultValue: 'HERE I AM',
description: 'A property',
facetable: 'FALSE',
indexTokenisationMode: 'TRUE',
indexed: true,
isMandatory: false,
Expand All @@ -50,7 +49,6 @@ const elementCustom: ContentTypeModelEntry = {
dataType: 'ck:propB',
defaultValue: 'HERE I AM',
description: 'A property',
facetable: 'FALSE',
indexTokenisationMode: 'TRUE',
indexed: true,
isMandatory: false,
Expand All @@ -63,7 +61,6 @@ const elementCustom: ContentTypeModelEntry = {
dataType: 'ck:propC',
defaultValue: 'HERE I AM',
description: 'A property',
facetable: 'FALSE',
indexTokenisationMode: 'TRUE',
indexed: true,
isMandatory: false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ export class ContentTypeProperty {
dataType?: string;
defaultValue?: string;
description?: string;
facetable?: string;
indexTokenisationMode?: string;
indexed?: boolean;
isMandatory?: boolean;
Expand All @@ -64,7 +63,6 @@ export class ContentTypeProperty {
this.dataType = obj.dataType;
this.defaultValue = obj.defaultValue;
this.description = obj.description;
this.facetable = obj.facetable;
this.indexTokenisationMode = obj.indexTokenisationMode;
this.indexed = obj.indexed;
this.isMandatory = obj.isMandatory;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ const elementCustom: ContentTypeModelEntry = {
dataType: 'ck:propA',
defaultValue: 'HERE I AM',
description: 'A property',
facetable: 'FALSE',
indexTokenisationMode: 'TRUE',
indexed: true,
isMandatory: false,
Expand All @@ -116,7 +115,6 @@ const elementCustom: ContentTypeModelEntry = {
dataType: 'ck:propB',
defaultValue: 'HERE I AM',
description: 'A property',
facetable: 'FALSE',
indexTokenisationMode: 'TRUE',
indexed: true,
isMandatory: false,
Expand All @@ -128,7 +126,6 @@ const elementCustom: ContentTypeModelEntry = {
dataType: 'ck:propC',
defaultValue: 'HERE I AM',
description: 'A property',
facetable: 'FALSE',
indexTokenisationMode: 'TRUE',
indexed: true,
isMandatory: false,
Expand Down
2 changes: 0 additions & 2 deletions lib/content-services/src/lib/mock/content-model.mock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ export const mockContentModelTextProperty = {
defaultValue: '',
mandatoryEnforced: false,
indexed: false,
facetable: 'FALSE',
indexTokenisationMode: '',
constraints: []
};
Expand All @@ -44,7 +43,6 @@ export const mockContentModelDateProperty = {
defaultValue: '',
mandatoryEnforced: false,
indexed: false,
facetable: 'FALSE',
indexTokenisationMode: '',
constraints: []
};
Expand Down

0 comments on commit a6972b0

Please sign in to comment.