Sebastian Davids

Results 199 comments of Sebastian Davids

This issue asks for documentation … something along the lines of “3.x is in maintenance mode”. It could be placed on the home page of 3.x or on its installation...

One thing I noticed but I did not want to create a new issue or pollute this PR: https://github.com/mvdan/sh/blob/57b7613429b5ac2918c3218f321107f567ba2165/_js/go.mod#L3 should it not be the same as: https://github.com/mvdan/sh/blob/57b7613429b5ac2918c3218f321107f567ba2165/go.mod#L3

It might make sense to update the other examples as well, e.g.: https://github.com/vercel/turborepo/blob/9d225ace7ade58bf5d1aec9f4defcb4a14da3c95/examples/with-vue-nuxt/README.md?plain=1#L41 This could be another PR and only for the `pnpm/yarn/npm` ⇒ `npx turbo`

The main advantage is not having a required `.lycheecache` entry in your `.gitignore`. --- - global cache directory (`$XDG_CACHE_HOME/lychee/cache`, `$HOME/Library/Caches/lychee`, `%LOCALAPPDATA%\lychee\Cache` …)—depending on your OS, files in those directories are...

### Corresponding Sections in the Google Java Style Guide > Each time a new block or block-like construct is opened, the indent increases by two spaces. https://google.github.io/styleguide/javaguide.html#s4.2-block-indentation > Line-wrapping >...

Should this one be part of [Refine Google Style Guide](https://github.com/orgs/checkstyle/projects/7)?

To be clear: Google Style wants: ```java } catch ( @SuppressWarnings("PMD.AvoidCatchingGenericException") Exception e) { java.util.logging.Logger.getAnonymousLogger().severe(e.toString()); } ``` Checkstyle currently (with ``) wants: ```java } catch ( @SuppressWarnings("PMD.AvoidCatchingGenericException") Exception e) {...

I rechecked with [Google Java Format 1.25.0](https://github.com/google/google-java-format/releases/tag/v1.25.0) and [Checkstyle 10.20.2](https://checkstyle.org/releasenotes.html#Release_10.20.2)—still happening: ``` $ mkdir -p /tmp/test && cd "$_" $ curl -L -O -s https://github.com/checkstyle/checkstyle/releases/download/checkstyle-10.20.2/checkstyle-10.20.2-all.jar $ curl -L -O -s...

verified with `11.0.1`: ```shell $ mkdir -p /tmp/test && cd "$_" $ curl -L -O -s https://github.com/checkstyle/checkstyle/releases/download/checkstyle-11.0.1/checkstyle-11.0.1-all.jar $ curl -L -O -s https://github.com/google/google-java-format/releases/download/v1.28.0/google-java-format-1.28.0-all-deps.jar dev@dawnfly-mini test % echo 'class CatchFormalParameterIndention{void test(){try{throw...