sisoe24 / Python-Easy-Print

Private members should be marked as readonly JS-0368
Anti-pattern
Major
2 months ago7 months old
Member 'data' is never reassigned; mark it as readonly
110 * Convert placeholders symbols from the configuration settings.
111 */
112export class PlaceholdersConverter {
113    private data: DataModel;114    public statement: string;
115
116    /**
Member 'config' is never reassigned; mark it as readonly
11}
12
13export class Config {
14    private config: IConfiguration;15
16    constructor(configurations: IConfiguration) {
17        this.config = configurations;