Open
Description
We should check the formatting of the merged code because currently it doesn't comply with our devonfw ts-lint.
For instance, this code:
export const environment = {
production: false,
restPathRoot: 'http://localhost:8081/',
restServiceRoot: 'http://localhost:8081/services/rest/',
security: 'jwt',
};
When merged, removes the last trailing comma:
export const environment = {
production: false,
restPathRoot: 'http://localhost:8081/',
restServiceRoot: 'http://localhost:8081/services/rest/',
security: 'jwt'
};
And that doesn't comply with our ts-lint.
Metadata
Metadata
Assignees
Labels
No labels