Ferdinand Prantl
Ferdinand Prantl
Thank you! `dit` is the first editor as simple as `notepad`, but running in the terminal. :-)
You can create a file `.eslintignore` with file paths or patterns to ignore as a workaround. It is sufficient for the use case of checking the whole project. **UPDATE**: In...
@hadriann, yes, if you integrate denolint to an editor, git hook or other tool, which lints a file selection, _and you need to exclude some rules using `.denolint.json`_, there is...
This seems to be a duplicate of #631. **UPDATE**: On a second thought, it's not an exact duplicate. Although you could use the `lint` function for each file, you'd have...
You can use `eslint` ignore directives as a workaround: ```js ... // eslint-disable-next-line no-empty } catch {} ``` **UPDATE**: Just the `eslint-disable-next-line`.
I tried a brute-force workaround introducing symlinks `.so` for all `.so.N` files after installing the `glibc`: ```sh ln -sf /usr/glibc-compat/lib/ld-linux-x86-64.so.2 /usr/glibc-compat/lib/ld-linux-x86-64.so ln -sf /usr/glibc-compat/lib/libBrokenLocale.so.1 /usr/glibc-compat/lib/libBrokenLocale.so ln -sf /usr/glibc-compat/lib/libanl.so.1 /usr/glibc-compat/lib/libanl.so ln...
You could run `brew` with `strace` to see what call failed before the complaint about too old Ruby and Glibc was printed.
I can confirm that running `/usr/glibc-compat/bin/localedef -i en_US -f UTF-8 en_US.UTF-8` in a container based on `alpine:latest` locally works, but the same in a ci/cd pipeline on gitlab.com fails. However,...
[Enabling strace](https://gitlab.com/prantlf/docker-alpine-glibc/-/jobs/1625293109) revealed a failure when trying to use the gzipped file: ```txt openat(AT_FDCWD, "/usr/glibc-compat/share/i18n/charmaps/UTF-8", O_RDONLY) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "/usr/glibc-compat/share/i18n/charmaps/UTF-8.gz", O_RDONLY) = 4 newfstatat(4,...
@budo76, the prolog of `/usr/glibc-compat/bin/ldd` reveals the problem: ```sh #! /usr/bin/bash # Copyright (C) 1996-2021 Free Software Foundation, Inc. # This file is part of the GNU C Library. ```...