-
Notifications
You must be signed in to change notification settings - Fork 600
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 #2286 from newrelic/supportability_metrics
Add supportability enabled/disabled metrics
- Loading branch information
Showing
320 changed files
with
17,674 additions
and
1,478 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,26 @@ | ||
.github/ | ||
.gitignore | ||
.project | ||
.rubocop.yml | ||
.rubocop_todo.yml | ||
.simplecov | ||
.snyk | ||
.yardopts | ||
Brewfile | ||
CONTRIBUTING.md | ||
Dockerfile | ||
DOCKER.md | ||
docker-compose.yml | ||
config/ | ||
config.dot | ||
infinite_tracing/ | ||
Guardfile | ||
lefthook.yml | ||
log/ | ||
README.md | ||
test/ | ||
lib/tasks/bump_version.rb | ||
lib/tasks/coverage_report.rb | ||
lib/tasks/multiverse.rake | ||
lib/tasks/multiverse.rb | ||
lib/tasks/tests.rb |
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,30 @@ | ||
{ | ||
"env": { | ||
"browser": true, | ||
"es2021": true, | ||
"node": true | ||
}, | ||
"extends": "eslint:recommended", | ||
"parserOptions": { | ||
"ecmaVersion": "latest", | ||
"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
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 |
---|---|---|
|
@@ -6,4 +6,4 @@ inputs: | |
required: true | ||
runs: | ||
using: 'node16' | ||
main: 'index.js' | ||
main: 'dist/index.js' |
Oops, something went wrong.