-
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.
chore: import initial code snapshot (#6)
Signed-off-by: Nathan Klick <[email protected]>
- Loading branch information
1 parent
9722de2
commit 0de2c53
Showing
70 changed files
with
23,657 additions
and
2 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,33 @@ | ||
env: | ||
browser: true | ||
es2021: true | ||
extends: standard | ||
parserOptions: | ||
ecmaVersion: latest | ||
sourceType: module | ||
rules: | ||
headers/header-format: | ||
- error | ||
- source: "string" | ||
variables: | ||
year: "2024" | ||
content: | | ||
Copyright (C) {year} Hedera Hashgraph, LLC | ||
Licensed under the Apache License, Version 2.0 (the ""License""); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an ""AS IS"" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
plugins: ["headers"] | ||
overrides: | ||
- files: ["*.mjs"] | ||
parserOptions: | ||
ecmaVersion: latest | ||
sourceType: module |
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 @@ | ||
test/* |
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,17 @@ | ||
# See https://pre-commit.com for more information | ||
# See https://pre-commit.com/hooks.html for more hooks | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.5.0 | ||
hooks: | ||
- id: end-of-file-fixer | ||
- id: check-yaml | ||
- id: check-added-large-files | ||
- id: check-merge-conflict | ||
- id: detect-private-key | ||
- id: forbid-new-submodules | ||
- repo: https://github.com/compilerla/conventional-pre-commit | ||
rev: v2.4.0 | ||
hooks: | ||
- id: conventional-pre-commit | ||
stages: [ commit-msg ] |
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,8 @@ | ||
plugins: | ||
# Check that markdown is consistent. | ||
- remark-preset-lint-consistent | ||
# Few recommended rules. | ||
- remark-preset-lint-recommended | ||
# list item indentation should be space | ||
- - remark-lint-list-item-indent | ||
- space |
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 @@ | ||
codecov: | ||
max_report_age: off | ||
require_ci_to_pass: true | ||
comment: | ||
behavior: default | ||
layout: reach,diff,flags,tree,reach | ||
show_carryforward_flags: false | ||
coverage: | ||
precision: 2 | ||
range: | ||
- 60.0 | ||
- 80.0 | ||
round: down | ||
status: | ||
changes: false | ||
default_rules: | ||
flag_coverage_not_uploaded_behavior: include | ||
patch: true | ||
project: true | ||
github_checks: | ||
annotations: true |
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,23 @@ | ||
/** | ||
* Copyright (C) 2024 Hedera Hashgraph, LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the ""License""); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an ""AS IS"" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
const config = { | ||
testRegex: '(/__tests__/.*|(\\.|/)(test|spec))\\.(mjs?)$', | ||
moduleFileExtensions: ['js', 'mjs'], | ||
verbose: true | ||
} | ||
|
||
export default config |
Oops, something went wrong.