ESLint plugin
This project is maintained by iliubinskii
ESLint plugin / typescript/prefer-readonly-property
Disallows writable properties.
module.exports = {
plugins: ["misc"],
rules: {
"misc/typescript/prefer-readonly-property": "error"
}
};
class C {
x: string;
}
class C {
readonly x: string;
}