clean-code-typescript icon indicating copy to clipboard operation
clean-code-typescript copied to clipboard

Clean Code concepts adapted for TypeScript

Results 6 clean-code-typescript issues
Sort by recently updated
recently updated
newest added

Hi! Thank you for this repo, it is really useful :) I would like to add a complete example of the use of clean code and clean architecture concepts (by...

Help needed to add translations.

enhancement
help wanted

`type MenuConfig = { title?: string, body?: string, buttonText?: string, cancellable?: boolean }; function createMenu({ title = 'Foo', body = 'Bar', buttonText = 'Baz', cancellable = true }: MenuConfig) {...

question

In the example of "Function arguments (2 or fewer ideally)" There is a talk about destrcuting, which to what I know is: ``` const object = {a: 1, b: 2};...

question

Add more samples and description to `Objects and Data Structures` about builtin types in TypeScript, like the `Partial`, `ReadonlyArray` etc.

enhancement
help wanted

Should we cover [generics](https://www.typescriptlang.org/docs/handbook/generics.html)?

question