Flo Edelmann
Flo Edelmann
See [Tailwind's upgrade guide from v3 to v4](https://tailwindcss.com/docs/upgrade-guide#removed-deprecated-utilities): > We've removed any utilities that were deprecated in v3 and have been undocumented for several years. This PR replaces those classes...
Like this: ```html ``` Matches https://github.com/primefaces/primeuix/blob/main/packages/styles/src/inputgroup/index.ts
Like this: ```html foo ```
Consider this code: ```ts // validator.ts export type Validator = () => boolean export const validator1: Validator = () => true export const validator2: Validator = () => true ```...
See [jest/unbound-method](https://github.com/jest-community/eslint-plugin-jest/blob/main/docs/rules/unbound-method.md). The rule source [does already exist](https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/src/rules/unbound-method.ts) in this repo, but its tests are skipped and naively adding it to `index.ts` yields an error: ``` /home/flo/www/eslint-plugin-vitest/src/rules/unbound-method.ts:26 const TSESLintPlugin =...
see https://github.com/sb12/OSMStreetLight example link: https://sb12.github.io/OSMStreetLight/#15/52.5118/13.4051
### What are you trying to accomplish? See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dt: > multiple `` elements in a row indicate several terms that are all defined by the immediate next `` element Example...
ESLint [v9.17.0](https://github.com/eslint/eslint/releases/tag/v9.15.0) introduced `defaultOptions`: * Documentation: https://eslint.org/docs/latest/extend/custom-rules#option-defaults * RFC: https://github.com/eslint/rfcs/tree/main/designs/2023-rule-options-defaults Even though earlier ESLint versions don't have official support for this property (i.e. `context.options` returns the raw user-provided options rather...
In my workspace, the `graphql.config.ts` file is located in a subdirectory. That subdirectory is specified in the `graphql-config.load.rootDir` setting, which is respected by the LSP (autocomplete works), but not in...
## Expected Behavior Given this file: https://github.com/streetcomplete/StreetComplete/blob/5dc586dc5bb1ca72e44d02232de78a14d571e09a/app/src/commonMain/kotlin/de/westnordost/streetcomplete/osm/WaysCrossingUtils.kt It is called `WaysCrossingUtils.kt`, contains a single `data class WaysCrossing(…)`, a public `fun findNodesAtCrossingsOf(…)` and some private functions and extension functions. Since it...