psychobolt

Results 81 comments of psychobolt

I got it working with @davemcorwin suggestion of downgrading. "babel-plugin-module-resolver": "^2.7.1", "eslint-import-resolver-babel-module": "2.2.1",

Hello! This issue has not reproduced for me. My repo: https://github.com/psychobolt/react-electron-boilerplate Since then I've used: "babel-plugin-module-resolver": "^2.7.1" "eslint-import-resolver-babel-module": "^3.0.0",

https://github.com/styled-components/styled-components/issues/3607#issuecomment-1000937952 Works for me! However, I am getting some issue on Windows in vscode extension :( . I created a defect [here](https://github.com/stylelint/vscode-stylelint/issues/380). I hope it gets resolved soon.

> > [#3607 (comment)](https://github.com/styled-components/styled-components/issues/3607#issuecomment-1000937952) Works for me! However, I am getting some issue on Windows in vscode extension :( . I created a defect [here](https://github.com/stylelint/vscode-stylelint/issues/380). I hope it gets resolved...

> After following these steps: [#3607 (comment)](https://github.com/styled-components/styled-components/issues/3607#issuecomment-1019256148) I'm still experiencing strange failures with stylelint 14 and styled-components for seemingly basic stuff: > > e.g. > > ``` > import {...

For Jest, default exports will be ignored. The main [culprit ](https://github.com/facebook/jest/blob/7d4595eb935556b8214e1dda45b0b68dfc67068f/packages/jest-runtime/src/index.ts#L733) for not respecting the default export. ```js // https://github.com/facebook/jest/blob/main/packages/jest-runtime/src/index.ts#L733 const cjsExports = [...parsedExports].filter(exportName => { // we don't wanna...

stylelint is using process.cwd() , which can potentially return lower-case in environments. https://github.com/nodejs/node/issues/6624 I think we should avoid using process.cwd() direct values or indexing keys. It creates a lot of...

Due to some other dependencies in my project (react-intl), I am using RN ^0.42.0 and redux-devtools 0.5.0 (zalmoxisus's advice for WIndows). But upgrading redux-devtools ^0.5.11 will give me the path...

Related to case sensitive issue, I've outlined the issue [here](https://github.com/stylelint/stylelint/issues/5594) and some investigation https://github.com/stylelint/stylelint/issues/5594#issuecomment-1048459569 Originally reported by [adalinesimonian](https://github.com/adalinesimonian). vscode-stylelint is passing uppercase to stylelint, but stylelint doesn't like that :(...

This was removed in #3697. Related PR to address #3772