[](https://travis-ci.org/imcuttle/babel-plugin-danger-remove-unused-import) [





For shrinking the bundled javascript size :smile:
Note: remove unused import is dangerous
because the imported package may have some side effects!
``javascript`
{
ignore: ['react']
}
`javascript
import React from 'react'
import Button from 'button'
import _ from 'lodash'
import moment from 'moment'
import { data } from '../some-where'
// ...
const a = {}
a.moment =
`
`diff
import React from 'react'
import Button from 'button'
- import _ from 'lodash'
- import moment from 'moment'
import {data} from '../some-where'
// ...
const a = {}
a.moment =
``
- [ ] Supporting Scope