Giter Site home page Giter Site logo

Same Issue about ktlint-gradle HOT 6 CLOSED

mattyg12three avatar mattyg12three commented on June 3, 2024 1
Same Issue

from ktlint-gradle.

Comments (6)

AbrahamCardenesAcid avatar AbrahamCardenesAcid commented on June 3, 2024 3

Hi again, finally I found a way to make it work!
In the .editorconfig file at the root of the project you just need to put:

[*.{kt,kts}]
ktlint_code_style = android_studio
ktlint_function_naming_ignore_when_annotated_with=Composable

from ktlint-gradle.

wakingrufus avatar wakingrufus commented on June 3, 2024 1

Thanks @AbrahamCardenesAcid for figuring this out!

from ktlint-gradle.

mattyg12three avatar mattyg12three commented on June 3, 2024

I was having this same problem, the solution in my project was in the root gradle.kts file:

    ktlint {
        android.set(true)
        outputToConsole.set(true)
        enableExperimentalRules.set(true)
        // This right here
        additionalEditorconfig.set(
            mapOf(
                "function-naming" to "false"
            )
        )
   }

I also had an IDE plugin installed alongside this, which I uninstalled.

from ktlint-gradle.

AbrahamCardenesAcid avatar AbrahamCardenesAcid commented on June 3, 2024

I was having this same problem, the solution in my project was in the root gradle.kts file:

    ktlint {
        android.set(true)
        outputToConsole.set(true)
        enableExperimentalRules.set(true)
        // This right here
        additionalEditorconfig.set(
            mapOf(
                "function-naming" to "false"
            )
        )
   }

I also had an IDE plugin installed alongside this, which I uninstalled.

This didn't work in my case, it throws an error so by the moment I'll stick with @Suppress("FunctionName") , thanks anyways ❤️

image

Also it seems like is something more general:

pinterest/ktlint#2259
https://youtrack.jetbrains.com/issue/KT-62260/Add-Composable-function-naming-rules-as-an-exception-to-the-coding-conventions

from ktlint-gradle.

AbdullahJaved-dev avatar AbdullahJaved-dev commented on June 3, 2024

additionalEditorconfigFile.set(file("/some/additional/.editorconfig")) // not supported with ktlint 0.47+
In documentation, it's mentioned that .editorconfig will not be supported with 0.47+. Will the above solution work for the latest version 1.1.1?

from ktlint-gradle.

wakingrufus avatar wakingrufus commented on June 3, 2024

.editorconfig is still supported, but you just have to rely on ktlint's built-in editorconfig file detection. We lost the ability to pass in a file path to ktlint

from ktlint-gradle.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.