Dmitry Semigradsky

Results 119 comments of Dmitry Semigradsky

This extension detects libraries by executed JS code. Maybe your HTML file has incorrect paths to JS files, you can open Network tab on Browser Developer Tools and check that...

Some 'deprecated' imports from me: ```ts import dxScrollable from 'devextreme/ui/scroll_view/ui.scrollable' dxScrollable.defaultOptions({ // `dxScrollable` marked as deprecated ... }) ``` --- ```ts import type { PivotGridDataSourceField } from 'devextreme/ui/pivot_grid/data_source' ``` I...

`no-wait-for-empty-callback` was removed in v6. Should it be closed?

It was a suggestion to replace the Babel plugin with a new one that supports new syntax by default. https://github.com/ardatan/graphql-tools/blob/3a8e4846a745c313240c9312a43d499d7177b7fc/packages/graphql-tag-pluck/package.json#L55 But I didn't see how this dependency used in `graphql-tag-pluck`

No plans to exporting `NodeEventTarget`?

> what are you missing in EventTarget ? I just found this comment: https://github.com/DefinitelyTyped/DefinitelyTyped/blob/eaaf5e44d4c874c4f7e38210cc62d053292f3b13/types/node/events.d.ts#L39-L41

Related: https://github.com/DefinitelyTyped/DefinitelyTyped/discussions/66880

@steveharrison https://caniuse.com/mdn-css_properties_font-variant-caps https://caniuse.com/font-variant-numeric etc.

I need to have a list of all dependencies in the project for analysis. It is very frustrating to have `source-map`, `cosmiconfig` in dependencies (because they are dependencies for `@emotion/babel-plugin`....

> because I have errors like `javascript error: javascript error: Cannot call extract() unless you call cacheAllCSFFiles() first.` in screenshot testing Fixed these errors by adding: ```ts // `client` is...