-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #127 from Teamwork/decaffeinate
This removes all CoffeeScript in favor of JavaScript and EM6 module. Actually add AppX support. Improve Linux support. Improve test coverage. API breakage: to better support extra arguments to be added at launch and to better structure the options, the API is changed. While it should still support the old options, I may have missed some cases.
- Loading branch information
Showing
23 changed files
with
6,242 additions
and
1,067 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"presets": [ "@babel/preset-env" ] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{ | ||
"extends": "airbnb-base", | ||
"env": { | ||
"browser": true, | ||
"mocha": true | ||
}, | ||
"parser": "@babel/eslint-parser", | ||
"parserOptions": { | ||
"requireConfigFile": false, | ||
"sourceType": "module" | ||
}, | ||
"rules": { | ||
"brace-style": "warn", | ||
"class-methods-use-this": 0, | ||
"comma-dangle": [ | ||
"warn", | ||
"only-multiline" | ||
], | ||
"indent": [ | ||
"warn", | ||
2, | ||
{ | ||
"SwitchCase": 1 | ||
} | ||
], | ||
"lines-between-class-members": "off", | ||
"linebreak-style": "off", | ||
"max-len": [ | ||
"warn", | ||
128 | ||
], | ||
"no-promise-executor-return": "warn", | ||
"no-var": "error", | ||
"no-useless-constructor": "off", | ||
"object-curly-newline": "warn", | ||
"object-curly-spacing": "warn", | ||
"prefer-arrow-callback": "off", | ||
"prefer-const": "warn", | ||
"prefer-destructuring": "off", | ||
"import/extensions": [ | ||
"error", | ||
"ignorePackages", | ||
{ | ||
"js": "always" | ||
} | ||
] | ||
} | ||
} |
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,5 +1,5 @@ | ||
* | ||
!dist/* | ||
!src/* | ||
!README.md | ||
!LICENSE.md | ||
!package.json |
Oops, something went wrong.