Skip to content

Commit

Permalink
Merge pull request #83 from atom-community/atom-ide-code-format
Browse files Browse the repository at this point in the history
feat: add atom-ide-code-format to atom-ide-base
  • Loading branch information
aminya authored Jul 15, 2021
2 parents f9ce62a + 6693800 commit 96b4c44
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 3.4.0

- feat: add atom-ide-code-format

### 3.3.0

- feat: add call-hierarchy API to the types
Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,9 @@
{
"name": "atom-ide-outline"
},
{
"name": "atom-ide-code-format"
},
{
"name": "linter"
},
Expand Down
8 changes: 2 additions & 6 deletions package/main.d.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
/**
* called by Atom when activating an extension
*/
/** Called by Atom when activating an extension */
export declare function activate(): void;
/**
* called by Atom when deactivating an extension
*/
/** Called by Atom when deactivating an extension */
export declare function deactivate(): void;
export declare const config: {
longLineLength: {
Expand Down
2 changes: 1 addition & 1 deletion package/main.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package/main.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions spec/main-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ describe("tests", () => {
"atom-ide-hyperclick",
"atom-ide-definitions",
"atom-ide-outline",
"atom-ide-code-format",
"linter",
"linter-ui-default",
"intentions",
Expand Down
1 change: 1 addition & 0 deletions src-package/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ async function package_deps() {
"atom-ide-hyperclick",
"atom-ide-definitions",
"atom-ide-outline",
"atom-ide-code-format",
"linter",
"linter-ui-default",
"intentions",
Expand Down

0 comments on commit 96b4c44

Please sign in to comment.