-
Notifications
You must be signed in to change notification settings - Fork 5k
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 #23368 from MetaMask/Version-v11.13.0
Version v11.13.0
- Loading branch information
Showing
656 changed files
with
15,173 additions
and
6,418 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
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
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
Validating CODEOWNERS rules …
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,36 @@ | ||
name: "MetaMask Security Code Scanner" | ||
|
||
on: | ||
push: | ||
branches: [ 'develop' ] | ||
pull_request: | ||
branches: [ 'develop' ] | ||
|
||
jobs: | ||
run-security-scan: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
steps: | ||
- name: MetaMask Security Code Scanner | ||
uses: MetaMask/Security-Code-Scanner@main | ||
with: | ||
repo: ${{ github.repository }} | ||
paths_ignored: | | ||
test/ | ||
docs/ | ||
storybook/ | ||
.storybook/ | ||
'**/*.test.js' | ||
'**/*.test.ts' | ||
'**/*.test.jsx' | ||
'**/*.test.tsx' | ||
'**/*.stories.tsx' | ||
development/chromereload.js | ||
node_modules | ||
rules_excluded: | ||
example | ||
mixpanel_project_token: ${{secrets.SECURITY_CODE_SCANNER_MIXPANEL_TOKEN}} | ||
slack_webhook: ${{ secrets.APPSEC_BOT_SLACK_WEBHOOK }} |
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
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,3 +1,7 @@ | ||
{ | ||
"recommendations": ["rvest.vs-code-prettier-eslint"] | ||
"recommendations": [ | ||
"rvest.vs-code-prettier-eslint", | ||
"streetsidesoftware.code-spell-checker", | ||
"DigitalBrainstem.javascript-ejs-support" | ||
] | ||
} |
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,41 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"allOf": [ | ||
{ | ||
"required": ["lavamoat"], | ||
"properties": { | ||
"scripts": { | ||
"properties": { | ||
"start:dev": { | ||
"description": "Runs `yarn start` with the addition of react/redux backend devtool servers enabled." | ||
} | ||
} | ||
}, | ||
"devDependencies": { | ||
"required": ["lavamoat"], | ||
"properties": { | ||
"autoprefixer": { | ||
"description": "Used by our build systems to automatically add prefixes to CSS rules based on our browserslist." | ||
} | ||
} | ||
}, | ||
"lavamoat": { | ||
"type": "object", | ||
"required": ["allowScripts"], | ||
"additionalProperties": false, | ||
"properties": { | ||
"allowScripts": { | ||
"type": "object", | ||
"additionalProperties": { | ||
"type": "boolean" | ||
}, | ||
"description": "Defines which dependencies' scripts are allowed to run upon install. If this setting is true, the scripts are allowed. If false, the scripts are not allowed. Run `yarn allow-scripts auto` to add a dependency to this list (defaults to false)." | ||
} | ||
} | ||
} | ||
} | ||
} | ||
], | ||
"description": "An extension of the standard package.json schema used to document our package.json scripts, dependencies, and miscellaneous fields.", | ||
"title": "Extended package.json Schema" | ||
} |
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
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.