Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for global config #169

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

bernabas
Copy link

@bernabas bernabas commented May 1, 2020

I am trying to exclude a file without having to list it in the repo's standard.yml file. That directory is included in my global gitignore file so it gets to be ignored, and I do not want to add it to the repo's standard.yml file exclusion list (for the same reason why I added it to the global gitignore file vs the repo's gitignore file).

This PR adds that basic functionality by looking for a .standard_global.yml file in the home directory.

@searls
Copy link
Contributor

searls commented May 6, 2020

Hi @bernabas, I can definitely understand what you're going for here, even though it's a pretty niche edge case. I have two concerns:

  1. With this feature, someone could have a standard_global file that results in Standard passing/skipping files unexpectedly, such that things look green locally then they push and break the build. I don't think many test runners have similar features for similar reasons, that having an outside-the-repo/global way to make your machine behave differently from all the others undermines the veracity of the tool's results. Before considering this feature, I'd first take pains to make sure that the same result can't be achieved in other ways like (ideally) command line flags or local edits to your .standard.yml file

  2. Dumping dotfiles in a home directory makes a lot of assumptions and is increasingly frowned upon. I'll lean on my resident dotfiles czar, @jasonkarns to explain why

@jasonkarns
Copy link
Collaborator

jasonkarns commented May 6, 2020

So if we supported this, IMO, it would need to follow the XDG basedir spec. Which means the global file would live at ${XDG_CONFIG_HOME:-$HOME/.config}/standardrb/config.yml or similar. (That addresses 2.)

There is some prior art that addresses 1.
Rubocop supports a global config file, but the presence of a local file takes precedence. So a global standard config would not be used if a local config existed. This avoids "works on my machine" false negatives.

Eslint also supports global configs and actually does combine the global config with local configs. This exposes them to the inconsistent behavior we're concerned about. Their solution to this is for the local config to specify root: true in a local config to stop the upward hierarchy lookup. This approach is useful in that it allows per-subdirectory config files, but I wouldn't recommend this approach at all. (I'd imagine that as projects mature, it becomes increasingly likely to find a root: true in every local config, thereby effectively behaving the same as rubocop.)

So, I would be in favor of this feature provided:

  • we respect XDG
  • the global config is only referenced in the absence of a local config

Unfortunately, I suspect this latter requirement makes the feature moot for @bernabas' use-case?

@jasonkarns jasonkarns added this to Backlog in Test Double Trouble Oct 1, 2021
@searls
Copy link
Contributor

searls commented Mar 19, 2023

I'm becoming more sympathetic to this for exactly one edge case: ignoring particular untracked files that you don't want Standard to touch. I find myself making a lot of scratch files that I want my tools to skip and which (because I'm not committing them) I don't want to have to reference from tracked files that configure my tools.

If I'm debugging something in the project with a throwaway foo.rb driver script and I don't want Standard to operate on it for whatever reason, it'd be nice to have an equivalent to global core.excludesFile gitignore to allow for that

All that to say, and I realize this isn't the thrust of the implementation of the pull request, but it might meet the spirit of what @bernabas was going for.

@jasonkarns
Copy link
Collaborator

Personally, I'd rather be able to tell standard to only look at versioned files. Then standard doesn't need to care why or how the files are unversioned. Instead, it would ask git which files are versioned, and only scan those. (Not surprisingly, if this were how Standard worked, it would eliminate the need for all but one or two standard's built-in ignore rules.)

@searls
Copy link
Contributor

searls commented Mar 20, 2023

That thought occurred to me too, but unfortunately such an option would have the unintended consequence of not linting/formatting any new files until they were committed. Meaning every time you write new classes you wouldn't benefit from autoformatting until committing them. And once committed you'd likely discover they have linting errors. 🤔

@jasonkarns
Copy link
Collaborator

From the cli I suppose. But IDE integration would still be in effect and run against new files.

@searls
Copy link
Contributor

searls commented Mar 20, 2023

Our VS Code extension reads the config and ignores ignored files, though :-/

@jasonkarns
Copy link
Collaborator

jasonkarns commented Mar 20, 2023 via email

@searls searls removed this from Backlog in Test Double Trouble Apr 15, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants