return2ozma@lemmy.world to Technology@lemmy.worldEnglish · 15 天前Something Bizarre Is Happening to People Who Use ChatGPT a Lotfuturism.comexternal-linkmessage-square242fedilinkarrow-up1490
arrow-up1490external-linkSomething Bizarre Is Happening to People Who Use ChatGPT a Lotfuturism.comreturn2ozma@lemmy.world to Technology@lemmy.worldEnglish · 15 天前message-square242fedilink
minus-squareendeavor@sopuli.xyzlinkfedilinkEnglisharrow-up9·15 天前I use chat gpt to find issues in my code when I am at my wits end. It is super smart, manages to find the typo I made in seconds.
minus-squarefelixwhynot@lemmy.worldlinkfedilinkEnglisharrow-up18·15 天前If you’re running into typo type issues, I encourage you to install or configure your linter plugin, they are great for this!
minus-squareNostraDavid@programming.devlinkfedilinkEnglisharrow-up8·14 天前Presuming you’re writing in Python: Check out https://docs.astral.sh/ruff/ It’s an all-in-one tool that combines several older (pre-existing) tools. Very fast, very cool.
minus-squaretau@infosec.publinkfedilinkEnglisharrow-up1·14 天前I’m looking to integrate ruff more into my workflow. Do you have any tips coming from black + isort?
I use chat gpt to find issues in my code when I am at my wits end. It is super smart, manages to find the typo I made in seconds.
If you’re running into typo type issues, I encourage you to install or configure your linter plugin, they are great for this!
Thanks ill look into it!
Presuming you’re writing in Python: Check out https://docs.astral.sh/ruff/
It’s an all-in-one tool that combines several older (pre-existing) tools. Very fast, very cool.
I’m looking to integrate ruff more into my workflow. Do you have any tips coming from black + isort?