ESLint plugin
This project is maintained by iliubinskii
ESLint plugin / typescript/consistent-array-type-name
Requires consistent array type name.
module.exports = {
plugins: ["misc"],
rules: {
"misc/typescript/consistent-array-type-name": "error"
}
};
type Cat = string[];
type Progress = string[];
type Cats = string[];
type CatArray = string[];
type Progresses = string[];
type ProgressArray = string[];