-
Updated
Mar 2, 2022 - JavaScript
clean-code
Here are 1,685 public repositories matching this topic...
-
Updated
Mar 22, 2022 - C#
-
Updated
Jan 12, 2022 - TypeScript
-
Updated
Mar 22, 2022 - C#
-
Updated
Mar 20, 2022 - TypeScript
-
Updated
Mar 17, 2022 - C#
-
Updated
Jun 18, 2019 - JavaScript
Let's add MinVer and on successful builds generate a release.
-
Updated
Oct 9, 2021 - JavaScript
-
Updated
Dec 4, 2019 - Java
-
Updated
Mar 11, 2022
-
Updated
Mar 10, 2022 - C#
Why not Hilt?
Why don't you use Hilt? Google says
Dagger and Hilt code can coexist in the same codebase. However, in most cases it is best to use Hilt to manage all of your usage of Dagger on Android.
-
Updated
Jun 22, 2021
- PHPMD version: 2.9.1
- PHP Version: 7.4.10
- Installation type: composer
- Operating System / Distribution & Version: Windows 10 / Linux
Current Behavior
I'm trying to use exclude-pattern in a ruleset, but the same path doesn't work in windows/linux at the same time.
Usually I use a path like
<exclude-pattern>application/folder</exclude-pattern>
But, this only works for linux
I'd love to be able to get an ArgumentNullException when the value is null and a plain ArgumentException when it simply has some invalid form. My current best practice for this is:
Actions = Guard.Against.Inv
-
Updated
Nov 25, 2021 - C#
-
Updated
Jan 19, 2022
-
Updated
Jan 29, 2022 - Swift
-
Updated
Mar 9, 2022 - C#
-
Updated
May 10, 2021 - Kotlin
-
Updated
Mar 3, 2022 - JavaScript
-
Updated
Feb 8, 2021
-
Updated
Jan 31, 2021
-
Updated
Mar 20, 2022 - Dart
-
Updated
Jan 2, 2021
Blocked By: wix/vscode-glean#97
Example:
class Foo extends Component {
render() {
return (<div>
{this.props.foo.map((bar) => <div>{bar.x}</div>)}
</div>)
}
}
Current:
const Foo = props => {
const foo = useRef();
const x = useRef();
return <div>
{foo.current.map(bar => <div>{x.current}</div>)}
Improve this page
Add a description, image, and links to the clean-code topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the clean-code topic, visit your repo's landing page and select "manage topics."
https://github.com/kgrzybek/modular-monolith-with-ddd/blob/54d209639e501301e879aa0d0a84c9ea49e4689e/src/Modules/Meetings/Domain/Meetings/Rules/MeetingAttendeesLimitMustBeGreaterThanGuestsLimitRule.cs#L1-L21
I believe the comparison operator used in the
IsBroken
method is wrong because the rule is checking that meeting attendees limit must be greater than guests limit.