Skip to content
View ComputerDaddyGuy's full-sized avatar

Organizations

@luxid-lu

Block or report ComputerDaddyGuy

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. JFileTreePrettyPrinter JFileTreePrettyPrinter Public

    A lightweight and flexible Java library with a native CLI to pretty-print directory structures - ideal for documentation, project overviews, or CLI tools.

    Java 4

  2. jinputguard/jinputguard jinputguard/jinputguard Public

    A Java library to sanitize, transform and validate inputs

    Java 4

  3. ArchUnit: prevent Lombok "EqualsAndH... ArchUnit: prevent Lombok "EqualsAndHashCode" usage for JPA Entities
    1
    /**
    2
     * From article: https://www.linkedin.com/pulse/archunit-prevent-lombok-usage-entities-samuel-schnegg-1zwoe/
    3
     */
    4
    @Test
    5
    public void entities_mustNot_beAnnotatedWith_lombokEqualsAndHashCode() {
  4. ArchUnit: ensure hashcode() and equa... ArchUnit: ensure hashcode() and equals() are always defined together
    1
    /**
    2
     * From article: https://www.linkedin.com/pulse/archunit-ensure-hashcode-equals-defined-together-samuel-schnegg-0hpce
    3
     */
    4
    @Test
    5
    public void anyJavaClass_must_implementProperlyEqualsAndHashcodeTogether() {
  5. ArchUnit: explicit column type choic... ArchUnit: explicit column type choice for enums in JPA entities
    1
    /**
    2
     * From Article: https://www.linkedin.com/pulse/archunit-explicit-column-type-choice-enums-jpa-entities-schnegg-avt9e
    3
     */
    4
    @Test
    5
    public void enums_InEntities_mustBeAnnotatedWith_Enumerated() {
  6. ArchUnit: disallow implicit event ch... ArchUnit: disallow implicit event chaining in async event listeners
    1
    @Test
    2
    public void eventListener_methods_thatAre_async_mustHave_void_returnType() {
    3
    	var test = ArchRuleDefinition
    4
    		.methods()
    5
    		.that()