forked from Techofficer/node-apple-signin
-
Notifications
You must be signed in to change notification settings - Fork 8
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 #1 from renarsvilnis/migrate-to-typescript
Revive node-apple-sign
- Loading branch information
Showing
27 changed files
with
26,640 additions
and
182 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,3 +1,26 @@ | ||
module.exports = { | ||
"extends": "airbnb-base" | ||
env: { | ||
node: true, | ||
es6: true | ||
}, | ||
parser: "@typescript-eslint/parser", | ||
plugins: ["prettier", "@typescript-eslint"], | ||
extends: [ | ||
"standard", | ||
/** | ||
* Extend standard by adding typescript specific rules | ||
*/ | ||
"plugin:@typescript-eslint/recommended", | ||
/** | ||
* Use prettier/@typescript-eslint to disable prettier conflicting | ||
* eslint rules set by @typescript-eslint/eslint-plugin | ||
*/ | ||
"prettier/@typescript-eslint", | ||
/** | ||
* Enables eslint-plugin-prettier and displays prettier errors as eslint | ||
* errors instead of running eslint and prettier separate. | ||
* ⚠️ Make sure this is always the last configuration in the extends array! | ||
*/ | ||
"plugin:prettier/recommended" | ||
] | ||
}; |
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 @@ | ||
10 |
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 @@ | ||
module.exports= { | ||
printWidth: 120 | ||
}; |
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.