Tanguy Krotoff

Results 84 comments of Tanguy Krotoff

Tested with [email protected], *"0 components found!"* :-/

You only detect default exports: https://github.com/CVarisco/delete-react-zombies/blob/22aaaab93b77cb1de874ecf710efb13f265904da/src/utils.ts#L6 That's why. We don't use them, here some reasons: https://basarat.gitbooks.io/typescript/docs/tips/defaultIsBad.html

I've switched all my code from `var Account = bookshelf.Model.extend({ ... })` to TypeScript classes (`class Account extends bookshelf.Model { ... }`) and all my unit tests pass as before....

``` TypeScript .catch(Account.NotFoundError, error => /* could be either account or user */ ); ``` Ok I see; my mistake. Temporary solution: ``` TypeScript import * as createError from 'create-error';...

I think the `autocomplete` attribute should be simply removed from this lib and be left for the developer to decide whether or not he wants to disable it. In my...

Are you interested to also have the SVG example in js/tests/visual/tooltip.html It would makes sense I can cherry-pick this and make a new PR

Visual tests js/tests/visual/input.html On macOS Monterey 12.6.2: - Chrome 109: no problem - Firefox 108: no problem - Safari 16.2: no problem - Edge 109: no problem On Android 13...

Please don't close 🙏 (I hate those bots)

[DB-Engines](https://db-engines.com/en/ranking_definition) uses Google trends, # tweets, # jobs, # questions on Stack Overflow... Here some numbers from the 2022 Stack Overflow survey: - https://survey.stackoverflow.co/2022/#most-popular-technologies-database-prof ![image](https://user-images.githubusercontent.com/643434/227788797-ace1659b-8c05-4d9f-940b-f0a9d4a82fed.png) - https://survey.stackoverflow.co/2022/#most-loved-dreaded-and-wanted-database-want ![image](https://user-images.githubusercontent.com/643434/227788169-46b619b7-f79c-4b3e-a43e-68f080659210.png) JetBrains 2022...

Meanwhile this can be achieved thx to [`no-restricted-properties`](https://eslint.org/docs/latest/rules/no-restricted-properties) and [`react/forbid-dom-props`](https://github.com/jsx-eslint/eslint-plugin-react/blob/v7.33.1/docs/rules/forbid-dom-props.md): ```TypeScript // .eslintrc.js const noDataTestIdMessage = 'Tests should resemble how the user interacts with the application and should not rely...