• 0 Posts
  • 4 Comments
Joined 1 year ago
cake
Cake day: August 5th, 2023

help-circle
  • kora@sh.itjust.workstoProgrammer Humor@programming.dev.DS_Store
    link
    fedilink
    arrow-up
    7
    arrow-down
    2
    ·
    6 hours ago

    I elaborated on it below. Your team will grow and shrink. No guarantee that each developer will bring the same IDE. This is especially true for open source projects.

    If it works your team, no need to be dogmatic about it. Just be careful about what you put there and agree on a set of sane defaults with your team. Your project should build and run tasks without needing a specific IDE.


  • kora@sh.itjust.workstoProgrammer Humor@programming.dev.DS_Store
    link
    fedilink
    arrow-up
    5
    arrow-down
    2
    ·
    edit-2
    6 hours ago

    Linting rules and scripts should never live in an IDE-specific directory. I should not need to know your IDE configuration to run scripts and lint my files.

    I have yet to come across a language that requires configuration to be stored that way. All modern languages have separate configuration and metadata files for use cases you have defined.

    As for workspace defaults, whatever IDE configuration works for you is not guaranteed to work for others. Shoving extension suggestions down their throat each time IDE is booted should not be a part of your source code, as IDE extensions should not be needed to run your code.