diff options
author | Stas Vilchik <stas.vilchik@sonarsource.com> | 2018-02-07 13:27:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-07 13:27:14 +0100 |
commit | 448e1fb820c918d462492b857403d0fc9a75a673 (patch) | |
tree | f13ffbd16131251746b185230d0d6b8823ef2bcd /server/sonar-web/src/main/js/apps/quality-profiles/utils.ts | |
parent | cc9b6d04f4f47d9f8b55a3873ae74ebad0a3990c (diff) | |
download | sonarqube-448e1fb820c918d462492b857403d0fc9a75a673.tar.gz sonarqube-448e1fb820c918d462492b857403d0fc9a75a673.zip |
strengthen import/order (#3024)
Diffstat (limited to 'server/sonar-web/src/main/js/apps/quality-profiles/utils.ts')
-rw-r--r-- | server/sonar-web/src/main/js/apps/quality-profiles/utils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/quality-profiles/utils.ts b/server/sonar-web/src/main/js/apps/quality-profiles/utils.ts index 062d9296dfa..c0e23eeaf9f 100644 --- a/server/sonar-web/src/main/js/apps/quality-profiles/utils.ts +++ b/server/sonar-web/src/main/js/apps/quality-profiles/utils.ts @@ -18,9 +18,9 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ import { sortBy } from 'lodash'; +import { Profile } from './types'; import { Profile as BaseProfile } from '../../api/quality-profiles'; import { differenceInYears, isValidDate, parseDate } from '../../helpers/dates'; -import { Profile } from './types'; export function sortProfiles(profiles: BaseProfile[]): Profile[] { const result: Profile[] = []; |