-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
48fb671
commit 4c59420
Showing
2 changed files
with
29 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,30 @@ | ||
[ | ||
{ | ||
"Name": "xo", | ||
"Description": "Lint your code using XO", | ||
"Website": "https://github.com/gamemaker1/micro-plugin-xo", | ||
"Tags": ["javascript", "node", "nodejs", "typescript", "linting"], | ||
"Versions": [ | ||
{ | ||
"Version": "0.1.0", | ||
"Url": "https://github.com/gamemaker1/micro-plugin-xo/releases/download/0.1.0/xo.zip", | ||
"Require": { "micro": ">=1.0.3" } | ||
} | ||
] | ||
} | ||
{ | ||
"Name": "xo", | ||
"Description": "Lint your code using XO", | ||
"Website": "https://github.com/gamemaker1/micro-plugin-xo", | ||
"Tags": [ | ||
"javascript", | ||
"node", | ||
"nodejs", | ||
"typescript", | ||
"linting" | ||
], | ||
"Versions": [ | ||
{ | ||
"Version": "0.1.0", | ||
"Url": "https://github.com/gamemaker1/micro-plugin-xo/releases/download/0.1.0/xo.zip", | ||
"Require": { | ||
"micro": ">=1.0.3" | ||
} | ||
}, | ||
{ | ||
"Version": "0.1.1", | ||
"Url": "https://github.com/gamemaker1/micro-plugin-xo/releases/download/0.1.1/xo.zip", | ||
"Require": { | ||
"micro": ">=1.0.3" | ||
} | ||
} | ||
] | ||
} | ||
] |
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,4 +1,4 @@ | ||
VERSION = "0.1.0" | ||
VERSION = "0.1.1" | ||
|
||
-- xo | ||
-- A Micro plugin that lints Typescript and Javascript files using XO | ||
|