🤔 Problem
Along resolving PR comments @Jwaegebaert noticed we have some not proper naming of private methods in some permission commands added not so long ago (most are my mistakes, sorry for that 🙏, probably to many transitions TS and C# along the day 😋). In some cases we have private methods names as PascalCase instead of camelCase.
example 👇
|
private AddRoleAssignment(requestUrl: string, logger: Logger, options: Options): Promise<void> { |
🎯 Aim
The aim would be to refactor the wrong method names to start with lower case letter.
💡Eslint
✅ ToDo
🤔 Problem
Along resolving PR comments @Jwaegebaert noticed we have some not proper naming of private methods in some permission commands added not so long ago (most are my mistakes, sorry for that 🙏, probably to many transitions TS and C# along the day 😋). In some cases we have private methods names as PascalCase instead of camelCase.
example 👇
cli-microsoft365/src/m365/spo/commands/list/list-roleassignment-add.ts
Line 189 in 4b19747
🎯 Aim
The aim would be to refactor the wrong method names to start with lower case letter.
💡Eslint
✅ ToDo