This repository has been archived by the owner on Oct 10, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/awesome import manager (#210)
* add schema for setting * adding classes for import grouping * change interface * add barrel file * change from yarn lock to npm5 * change commands * change prepare release script * update travis script * rename folder * correct escaping * adding first impl for module improts * tests and code for keyword import group * adding regex import group * add remain import group * adding settings parser and error for not matching ones * add setting parser tests * add remain grp to default * change ignore file * remove more stuff from extension * code st yle, export type * add more sofisticated info * adding import settings * do not cache (because of the array) * add remain grp if no is specified, adding back some tests * upgrade deps * refactor add imports * deps * adding method to add import groups * adding reset to groups * adding organize tests for group * remove \n from import ts gen * try to generate code * correctly generating organized imports * comment * changelog * remove "newImportLocation" * add sortedImports property * generate the correct imports at the correct places (imp mgmt) * add remaining as keyword and parsing for it * changelog * refactor code completion to use import manager * adding stringtemplate func and multiline comma import * fix tests * update tests & code style * fix bug and change the tests to new import groups * improve performance for code completion * documentation * rename commands * readme * explained old ver * upgrade dependencies * Revert "upgrade dependencies" This reverts commit b652bea. * package log * upgrade tslint (npm 5) * code style * Fix/upgrade vscode deps (#212) * upgrade packages * upgrade vscode.d.ts * TS 2.3.4 * refactoring undefined stuff * ts errors * fix undefiend * fixing build errors
- Loading branch information
Showing
52 changed files
with
5,098 additions
and
3,302 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,16 @@ | ||
.github/** | ||
.vscode/** | ||
.vscode-test/** | ||
typings/** | ||
out/test/** | ||
|
||
.gitignore | ||
package-lock.json | ||
prepare-release.js | ||
|
||
config/** | ||
test/** | ||
src/** | ||
**/*.map | ||
.gitignore | ||
tsconfig.json | ||
tslint.json | ||
typings.json | ||
|
||
*.vsix | ||
_workspace/** | ||
out/test/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.