Cosmin Dreve
Cosmin Dreve
If you go to http://alexkuz.github.io/react-input-enhancements/ from an Android phone and try to type into the `Mask + Autosize (phone number):` field `1234567890`, the value is: `+7 (654) 321-09-8`
I am working on a react application and one of the rules I have is to keep the react import always first. So, I would like to exclude this line...
Having: ```javascript import PropTypes from 'prop-types'; import Button from 'custom-button'; import SearchBox from 'custom-search-box'; ``` I would like to have them sorted: ```javascript import Button from 'custom-button'; import PropTypes from...
I have this: ```javascript import A from './A'; import C from '../C'; import B from '../../B'; ``` When sorting with: ``` "import-order-alphabetical/order": [2, { "groups": [["builtin", "external"], ["index", "parent", "sibling"]]...