-
-
Notifications
You must be signed in to change notification settings - Fork 0
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 #89 from twitter-base/next
chore(merge): Merge pull request #87 from twitter-base/dev
- Loading branch information
Showing
10 changed files
with
1,971 additions
and
1,209 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,21 @@ | ||
env: | ||
browser: true | ||
node: true | ||
es2020: true | ||
extends: 'eslint:recommended' | ||
parserOptions: | ||
ecmaVersion: 11 | ||
sourceType: module | ||
rules: | ||
indent: | ||
- error | ||
- 2 | ||
linebreak-style: | ||
- error | ||
- unix | ||
quotes: | ||
- error | ||
- single | ||
semi: | ||
- error | ||
- 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
env: | ||
browser: true | ||
node: true | ||
es2020: true | ||
extends: 'eslint:recommended' | ||
parserOptions: | ||
ecmaVersion: 11 | ||
sourceType: module | ||
rules: | ||
indent: | ||
- error | ||
- 4 | ||
linebreak-style: | ||
- error | ||
- unix | ||
quotes: | ||
- error | ||
- single | ||
semi: | ||
- error | ||
- 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 was deleted.
Oops, something went wrong.
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,24 @@ | ||
name: Release-Notes-Preview | ||
|
||
on: | ||
pull_request: | ||
branches: [ main ] | ||
issue_comment: | ||
types: [ edited ] | ||
|
||
jobs: | ||
preview: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
- name: Fetch tags | ||
run: | | ||
git fetch --prune --unshallow --tags | ||
- name: Preview release notes | ||
uses: snyk/[email protected] | ||
with: | ||
releaseBranch: main | ||
env: | ||
GITHUB_PR_USERNAME: ${{ github.actor }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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,28 @@ | ||
{ | ||
"esversion": 10, | ||
"eqeqeq": true, | ||
"curly": true, | ||
"bitwise": true, | ||
"forin": true, | ||
"freeze": true, | ||
"futurehostile": true, | ||
"latedef": true, | ||
"leanswitch": true, | ||
"maxdepth": 3, | ||
"maxparams": 4, | ||
"maxstatements": 5, | ||
"noarg": true, | ||
"nocomma": true, | ||
"nonbsp": true, | ||
"nonew": true, | ||
"noreturnawait": true, | ||
"regexpu": true, | ||
"singleGroups": true, | ||
"strict": "implied", | ||
"trailingcomma": true, | ||
"undef": true, | ||
"unused": true, | ||
"varstmt": true, | ||
"node": true, | ||
"module": true | ||
} |
Binary file not shown.
Oops, something went wrong.