Skip to content

Release/0.6.0 #23

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Mar 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
dist/*
run/*
task.d.ts
17 changes: 17 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
module.exports = {
parser: "@typescript-eslint/parser",
extends: [
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
parserOptions: {
ecmaVersion: 2018, // Allows for the parsing of modern ECMAScript features
sourceType: "module" // Allows for the use of imports
},
rules: {
"@typescript-eslint/interface-name-prefix": "off"
// Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs
// e.g. "@typescript-eslint/explicit-function-return-type": "off",
}
};
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
bld/
[Bb]in/
[Oo]bj/
[Dd]ist/

# Visual Studio 2015 cache/options directory
.vs/
Expand Down
7 changes: 7 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module.exports = {
semi: true,
trailingComma: "all",
singleQuote: false,
printWidth: 120,
tabWidth: 4,
};
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"eslint.alwaysShowStatus": true,
"eslint.autoFixOnSave": true
}
19 changes: 0 additions & 19 deletions dist/clean.js

This file was deleted.

8 changes: 0 additions & 8 deletions dist/configuration.js

This file was deleted.

23 changes: 0 additions & 23 deletions dist/endpoints.js

This file was deleted.

40 changes: 0 additions & 40 deletions dist/extension-version.js

This file was deleted.

54 changes: 0 additions & 54 deletions dist/install.js

This file was deleted.

49 changes: 0 additions & 49 deletions dist/node-modclean.js

This file was deleted.

137 changes: 0 additions & 137 deletions dist/package.js

This file was deleted.

Loading