ricardaxel
ricardaxel
Would you be open to add some mechanism to skip linting a given line / function / ... ? For example through UDAs, following code wouldn't raise any warning. ```...
Some build systems (bazel, meson, ..) can generate compilation database, that contain information about import directories. For D code, such file looks like that : ``` [ { "directory": "build",...
Hello, The step 7 of [Building KLEE with LLVM 13 doc](http://klee-se.org/build-llvm13/) suggests to use `-DKLEE_LIBCXX_INCLUDE_DIR=/libc++-install-130/include/c++/v1/` Wouldn't it better to suggest `-DKLEE_LIBCXX_INCLUDE_DIR=/libc++-install-130/` ? So that [KLEE_LIBCXX_PLATFORM_INCLUDE_PATH](https://github.com/klee/klee/blob/v3.1/CMakeLists.txt#L519) can be set properly as...
Can we have an option to have the `with` statement behaves like in the [spec](https://dlang.org/spec/statement.html#with-statement)) examples ? So that a `with` statement followed by anything but a [block statement](https://dlang.org/spec/statement.html#BlockStatement) is...