Jamie Hutber
Jamie Hutber

Reputation: 28064

Disable imports in ES6 displaying as "import ..." in PhpStorm

I'm currently struggling to work out how to turn this off, its small I know. But it bugs the hell out of me that every file I open I have to click the plus :O

What is in the ...

import { bindActionCreators } from 'redux';
import { connect } from 'react-redux';
import * as auth from '../actions/auth';
import Shell from '../components/Shell';

What it currently looks like

enter image description here

Upvotes: 4

Views: 322

Answers (1)

sdgluck
sdgluck

Reputation: 27217

Settings > Editor > General > Code Folding

Uncheck "JavaScript imports"

Upvotes: 3

Related Questions