-
after upgrading to 0.5.0 I can't import anything anymore. I always receive "No JS module to import for ...."
I can't downgrade the package in atom, so i am a little bit lost now :-(
-
If a file references a variable higher in the file than that variable's declaration — valid JS if the reference is within a function — `findUndefinedIdentifiers` flags it as not locally defined. This …
-
Not sure if this is a configuration question or feature request, but with a file like:
```js
import type { Counter } from 'types/counter'
type Props = {
counter: Counter,
}
...
```
W…
kylpo updated
7 years ago
-
This is partly because of a design decision we made earlier to exclude files that are in node_modules when resolving dependencies, and instead rely on package.json. However, when using goto, and you e…
-
importjs is currently broken using updated eslint configs (such as eslint-config-airbnb) without the update to eslint^3.0.0 (https://github.com/Galooshi/import-js/commit/a6f4c67dd7ff30d96ba99c3c33dd87…
-
We currently support two types of configuration files--JSON and JavaScript. Do we gain much by supporting JSON? Should we deprecate it to simplify people's options?
-
Originally reported here: https://github.com/Galooshi/atom-import-js/issues/8
I'm moving the issue to the main project as it affects all clients.
Given this content
```js
import AppView fro…
-
I use importjs in terminal, it works fine:
```
chris2@W530-chris:~/Desktop/uhs$
importjs word NormalButton src/containers/PatientDetail/FollowUpRecordView/HomeFollowupDetailView/index.js
{"messages…
-
I have a a.js file, it export a few functions like this:
``` js
export function b() {
}
export function c() {
}
...
```
I have to type these functions one by one to namedExport like
``` json
"named…
-
It is a common pattern to have a module that exports multiple things, and possibly no default thing. Example:
``` js
export function foo() {
...
}
export function bar() {
...
}
```
Now, if I wa…