Даниил Пронин
Даниил Пронин
It's unexpected behaviour ```css a { text-decoration: none; -webkit-text-decoration-skip: objects; } ``` ```css a { text-decoration: none; } ```
It's unexpected behaviour ```css @-ms-viewport { width: device-width; } ``` ```css @viewport { width: device-width; } ``` https://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/
```ts const phoneNumber = z.string().openapi('Phone') const mySchema = z.object({ somePhone: phoneNumber.nullable(), anotherPhone: phoneNumber, }) ``` Expected result: ```json "somePhone": { "allOf": [ { "$ref": "#/components/schemas/Phone" }, ], "nullable": true },...
I want to set up [cuco.plug.v2eur](https://home.miot-spec.com/spec/cuco.plug.v2eur) smart plug. I installed Xiaomi MiIO Raw using HACS added following to my `configuration.yaml`: ```yaml sensor: - platform: xiaomi_miio_raw name: Smart Plug host: token:...
I want to use `eslint-plugin-react-hook-form` with ESLint 9 / Flat Config + `eslint.config.ts` Currently, I configure it like this: ```ts import { fixupConfigRules } from '@eslint/compat'; import { FlatCompat }...
You might be interested `stylelint-prettier` breaks WebStorm for projects without `"type": "module"` in `package.json`: https://youtrack.jetbrains.com/issue/WEB-75358/stylelint-prettier-breaks-Stylelint-on-non-module-projects `[DEP0180] DeprecationWarning: fs.Stats constructor is deprecated`