better-align icon indicating copy to clipboard operation
better-align copied to clipboard

can it also align imports?

Open davidcoleman007 opened this issue 7 years ago • 1 comments

It would be really nice if this could also align imports:

from:

import React, { Component } from 'react';
import autoBind from 'react-autobind';
import PropTypes from 'prop-types';
import { List } from 'immutable';
import cx from 'classnames';

To:

import React, { Component } from 'react';
import autoBind             from 'react-autobind';
import PropTypes            from 'prop-types';
import { List }             from 'immutable';
import cx                   from 'classnames';

davidcoleman007 avatar Mar 10 '18 03:03 davidcoleman007

I agree. 👍

WinterCore avatar Apr 16 '18 07:04 WinterCore