readonly-array rule now allows for the readonly keyword to specify an array as readonly. This is a new feature supported in TypeScript 3.4. See #129. See PR #130
Fixed rule readonly-array with option ignore-return-type not checking within union, intersection and conditional types. This fix should now catch all return types that contain a nested array. See #124. See PR #125
Fixed rule readonly-array with option ignore-return-type not checking within generic parameters. See #117. Thanks to @RebeccaStevens for this fix! (See PR #120).