Git Product home page Git Product logo

Comments (7)

elpete avatar elpete commented on August 23, 2024 1

@jcberquist I'd like to add this as a first class command. The idea would be to use it with commandbox-githooks.

{
  "githooks": {
    "preCommit": "cfformat format-staged",
    "postCommit": "cfformat format-staged-cleanup"
  }
}

This would:

  1. Get the staged files from git
  2. Format each of them
  3. Add the changes to the index.
  4. Cleanup the index postCommit

How do you feel about this?

from commandbox-cfformat.

elpete avatar elpete commented on August 23, 2024

Here's an example as a recipe:

set FILES=`echo "git diff --cached --name-only" | run | grep .cfc`
echo ${FILES} | forEach "cfformat \${item} --overwrite
set LINEBREAK=`#chr 10`
set FILELIST=`#listChangeDelims ${FILES} " " ${LINEBREAK}`
echo "git add ${FILELIST}" | run
exit 0

from commandbox-cfformat.

jcberquist avatar jcberquist commented on August 23, 2024

I am not familiar with commandbox-githooks so forgive me: What is the relationship between the preCommit cfformat format-staged and the recipe you provided above?

from commandbox-cfformat.

elpete avatar elpete commented on August 23, 2024

The idea is similar to husky in Node land — run commands on certain git events. The recipe is a way to accomplish the steps listed above. The command I'm suggesting would make it so we don't need to distribute the recipe some other way.

from commandbox-cfformat.

jcberquist avatar jcberquist commented on August 23, 2024

Ok, well that sounds fine to me.

I need to add a way to tokenize a set of files without making a full pass through a directory. The binary is very fast, but it takes ~50ms to start up and load the syntax files into memory. If I can get it to tokenize a set of files without restarting it each time the cumulative time savings adds up.

from commandbox-cfformat.

jcberquist avatar jcberquist commented on August 23, 2024

This should be doable now, since cfformat can now work on an arbitrary list of files. How are you envisioning cfformat format-staged working - is that supposed to be a "magic" string that is not treated as a path? Or would it be better to to cfformat --format-staged?

from commandbox-cfformat.

elpete avatar elpete commented on August 23, 2024

I'm currently looking into solving this just in a package script, so cfformat would not need any special features to accommodate this.

from commandbox-cfformat.

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.