Martin Desrumaux
Martin Desrumaux
Thanks for your time :) Here is an example `babel.config.js` file ```js module.exports = function () { return { presets: ['babel-preset-expo'], plugins: [ ['module-resolver', { alias: { '~components': './src/components', '~utils':...
Thanks ! How can I test locally ? If I install the package from your branch ``` yarn add --dev 'HeroProtagonist/eslint-plugin-module-resolver#config-support ``` eslint does not find the plugin ``` ESLint:...
Okay, I succeed to install the plugin from the github branch with ``` cd node_modules/eslint-plugin-module-resolver/ yarn install yarn run babel lib --out-dir dist ``` I tested the plugin, however, `find-babel-config`...
@HeroProtagonist Thanks for the feedback ! I'm not using this lib anymore so I cannot test it right now.
Same here, there seems to be an issue on `eslint-plugin-import` side : https://github.com/benmosher/eslint-plugin-import/issues/496`
Oups, in fact this issue is a duplicate. https://github.com/tleunen/eslint-import-resolver-babel-module/issues/77
Hi ! I'm also looking to embed migrations in my binary. @bouk can you expand about what is blocking the PR ? Go 1.16 is out for a while now...
@appleboy would you consider merging a PR implementing this ? That would be a breaking change for v3.0 I guess.
You can do something like this : ```golang // Autofit all columns according to their text content cols, err := f.GetCols(sheetName) if err != nil { return err } for...
After some digging I tracked down the issue to [this commit](https://github.com/iamstevendao/vue-tel-input/commit/af74ada79bad526cbc6a460896158af2413ed806#diff-053150b640a7ce75eff69d1a22cae7f0f94ad64ce9a855db544dda0929316519L19868-L19871) and the vue-template-compiler upgrade. Upgrading to latest vue version fixed the issue. So, if you're using `vue < 2.6.13`,...