forked from richorama/AzureSpeedTest2
-
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.
- Loading branch information
1 parent
bf2899c
commit c138f64
Showing
15 changed files
with
337 additions
and
250 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,44 @@ | ||
{ | ||
"env": { | ||
"browser": true, | ||
"es6": true | ||
}, | ||
"extends": "eslint:recommended", | ||
"parserOptions": { | ||
"ecmaFeatures": { | ||
"experimentalObjectRestSpread": true, | ||
"jsx": true | ||
} | ||
}, | ||
"plugins": [ | ||
"react" | ||
], | ||
"globals": { | ||
"module": true, | ||
"require": true, | ||
"L": true, | ||
"settings": true, | ||
"define": true, | ||
"Buffer": true, | ||
"google" : true, | ||
"describe": true, | ||
"global": true, | ||
"it":true, | ||
"$":true | ||
}, | ||
"rules": { | ||
"indent": "off", | ||
"linebreak-style": "off", | ||
"quotes": "off", | ||
"semi": "off", | ||
"no-mixed-spaces-and-tabs" : "off", | ||
"no-unused-vars" : "off", | ||
"no-redeclare": "off", | ||
"no-empty": "off", | ||
"no-console":"off" | ||
}, | ||
"overrides": [{ | ||
"files": [ "*.js", "*.jsx" ], | ||
"excludedFiles": "*.min.js" | ||
}] | ||
"env": { | ||
"browser": true, | ||
"es6": true | ||
}, | ||
"extends": "eslint:recommended", | ||
"parserOptions": { | ||
"ecmaFeatures": { | ||
"experimentalObjectRestSpread": true, | ||
"jsx": true | ||
} | ||
}, | ||
"plugins": ["react"], | ||
"globals": { | ||
"module": true, | ||
"require": true, | ||
"L": true, | ||
"settings": true, | ||
"define": true, | ||
"Buffer": true, | ||
"google": true, | ||
"describe": true, | ||
"global": true, | ||
"it": true, | ||
"$": true | ||
}, | ||
"rules": { | ||
"indent": "off", | ||
"linebreak-style": "off", | ||
"quotes": "off", | ||
"semi": "off", | ||
"no-mixed-spaces-and-tabs": "off", | ||
"no-unused-vars": "off", | ||
"no-redeclare": "off", | ||
"no-empty": "off", | ||
"no-console": "off" | ||
}, | ||
"overrides": [ | ||
{ | ||
"files": ["*.js", "*.jsx"], | ||
"excludedFiles": "*.min.js" | ||
} | ||
] | ||
} |
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 +1 @@ | ||
* text=auto eol=crlf | ||
* text=auto eol=lf |
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,12 +1,12 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
- package-ecosystem: github-actions | ||
directory: / | ||
schedule: | ||
interval: daily | ||
|
||
# Maintain dependencies for npm | ||
- package-ecosystem: "npm" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
# Maintain dependencies for npm | ||
- package-ecosystem: npm | ||
directory: / | ||
schedule: | ||
interval: daily |
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,14 +1,13 @@ | ||
--- | ||
# See ../DEPENDENCIES.md#workaround-for-other-dependencies | ||
name: Dependabot hack | ||
on: # yamllint disable-line rule:truthy | ||
push: | ||
branches: | ||
- never-trigger-this-dependabot-hack-workflow | ||
- never-trigger-this-dependabot-hack-workflow | ||
jobs: | ||
dependabot_hack: | ||
name: Ensure dependabot version checks | ||
runs-on: "ubuntu-latest" | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Dockerfile: | ||
- uses: pre-commit/pre-commit@v3.1.1 | ||
- uses: pre-commit/pre-commit@v3.1.1 |
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 |
---|---|---|
|
@@ -4,7 +4,6 @@ on: [push] | |
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
|
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,19 +1,29 @@ | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.1.0 | ||
hooks: | ||
- id: check-json | ||
- id: check-yaml | ||
- id: check-xml | ||
- id: check-executables-have-shebangs | ||
- id: check-merge-conflict | ||
- id: trailing-whitespace | ||
args: ["--markdown-linebreak-ext=md"] | ||
- id: requirements-txt-fixer | ||
# - id: mixed-line-ending | ||
# args: ["--fix=crlf"] | ||
# description: Forces to replace line ending by the 'crlf' character. | ||
- repo: https://github.com/editorconfig-checker/editorconfig-checker.python | ||
rev: 2.4.0 | ||
hooks: | ||
- id: editorconfig-checker | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.4.0 | ||
hooks: | ||
- id: check-json | ||
- id: check-yaml | ||
- id: check-xml | ||
- id: check-executables-have-shebangs | ||
- id: check-merge-conflict | ||
- id: trailing-whitespace | ||
args: [--markdown-linebreak-ext=md] | ||
- id: requirements-txt-fixer | ||
- id: mixed-line-ending | ||
args: [--fix=lf] | ||
- repo: https://github.com/editorconfig-checker/editorconfig-checker.python | ||
rev: 2.7.1 | ||
hooks: | ||
- id: editorconfig-checker | ||
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks | ||
rev: v2.7.0 | ||
hooks: | ||
- id: pretty-format-yaml | ||
args: [--autofix, --indent, '2'] | ||
- repo: https://github.com/sirosen/check-jsonschema | ||
rev: 0.22.0 | ||
hooks: | ||
- id: check-github-workflows | ||
- id: check-github-actions | ||
- id: check-azure-pipelines |
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,13 +1,13 @@ | ||
{ | ||
"editor.formatOnPaste": true, | ||
"editor.formatOnSave": true, | ||
"eslint.format.enable": true, | ||
"eslint.lintTask.enable": true, | ||
"[typescript]": { | ||
"editor.defaultFormatter": "dbaeumer.vscode-eslint" | ||
}, | ||
"yaml.schemas": { | ||
"https://json.schemastore.org/github-workflow.json": "/.github/workflows/*.yml" | ||
}, | ||
"cSpell.words": ["pwsh"] | ||
} | ||
"editor.formatOnPaste": true, | ||
"editor.formatOnSave": true, | ||
"eslint.format.enable": true, | ||
"eslint.lintTask.enable": true, | ||
"[typescript]": { | ||
"editor.defaultFormatter": "dbaeumer.vscode-eslint" | ||
}, | ||
"yaml.schemas": { | ||
"https://json.schemastore.org/github-workflow.json": "/.github/workflows/*.yml" | ||
}, | ||
"cSpell.words": ["pwsh"] | ||
} |
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 |
---|---|---|
|
@@ -5,4 +5,4 @@ | |
} | ||
], | ||
"settings": {} | ||
} | ||
} |
Oops, something went wrong.