Yurii Fediv
Yurii Fediv
### What is the problem you're trying to solve? Migrating old codebase to stylelint without turning off stylelint rules. Of course, there are some other solutions for this problem like...
Content of original js file is: ``` import PropTypes from 'prop-types'; // eslint-disable-next-line import/prefer-default-export export const MyPropType = PropTypes.shape({ value: PropTypes.any.isRequired, title: PropTypes.string.isRequired, }); ``` After running codemod we get:...
This example works correctly: ``` Btn ``` This example doesn't work: ``` class Test extends Component { render() { return Btn; } } ``` Error that is returned: TypeError: el.querySelectorAll...
I pass next url to create websocket client and server: `ws://localhost/abs/abs`. When checking created websocket instance I see that webSocket.url equals just `ws://`. This problem is really annoying when you...
``` ERROR in ./node_modules/error-overlay-webpack-plugin/dist/entries/devserver.mjs?&sockHost=localhost&sockPath=/ws&sockPort=3023 3:0-37 Module not found: Error: Can't resolve 'querystring' in '/Users/admin/project/node_modules/error-overlay-webpack-plugin/dist/entries' ``` The reason of this error is that this package uses `querystring`package but doesn't have it...
I have a similar problem that is solved by this plugin but for native tabs. Is it possible to handle tabs closing in this way as well?
There is used next code to enable `import` and jsx: ` require('babel-register')({ ignore: /\/(build|node_modules)\//, presets: ['env','react-app'] }) ` But at the same time next code also works(`react-app` was changed to...