-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Pbsa develop (#28) * Sonar (#22) * ci: sonarlint WAL-223 * chore: rebuild * chore(release): 0.6.1 * PJL-24: security patches (#26) * Sonar (#22) * ci: sonarlint WAL-223 * chore: rebuild * chore(release): 0.6.1 * ci(packages): update packages to latest where possible two audit reports cannot be resolved as we cannot update a packages dependencies ourself. They are dev only issues so production is safe from these warnings PJL-24-security-patches * build: rebuild after npm package upgrades * chore: rebuild after pbsa-develop merge sync and conflict resolution * Patch npmignore file (#29) * chore(release): 0.6.2 * chore(release): 0.6.3 * chore(.npmignore): patch npmignore file ignore irrelevant files when publishing to NPM * Update readme with sonar scan badges (#30) * chore(release): 0.6.2 * chore(release): 0.6.3 * docs(readne): update readme to show status reports of repo status reports are automatically synced/updated with sonarcloud
- Loading branch information
Showing
159 changed files
with
16,042 additions
and
2,782 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 |
---|---|---|
@@ -1,43 +1,57 @@ | ||
{ | ||
"plugins": ["prettier"], | ||
"extends": "airbnb", | ||
"env": { | ||
"browser": true, | ||
"node": true, | ||
"es6": true, | ||
"mocha": true | ||
}, | ||
"rules": { | ||
"no-unused-vars": ["error", { | ||
"vars": "all", "args": "after-used" | ||
}], | ||
"comma-dangle": "off", | ||
"indent": ["error", 2, {"SwitchCase": 1}], | ||
"quotes": ["error", "single"], | ||
"semi": ["error", "always"], | ||
"no-console": "off", | ||
"camelcase": "off", | ||
"object-curly-spacing": ["error", "never"], | ||
"prefer-const": "off", | ||
"no-underscore-dangle": "off", | ||
"no-param-reassign": "off", | ||
"no-plusplus": "off", | ||
"no-useless-escape": "off", | ||
"no-restricted-properties": "off", | ||
"consistent-return": "off", | ||
"guard-for-in": "off", | ||
"no-loop-func": "off", | ||
"curly": ["error", "all"], | ||
"brace-style": ["error", "1tbs"], | ||
"default-case": "off", | ||
"prefer-destructuring": "off", | ||
"padding-line-between-statements": [ | ||
"error", | ||
{ "blankLine": "always", "prev": "*", "next": "block-like" }, | ||
{ "blankLine": "always", "prev": "block-like", "next": "*" } | ||
], | ||
"arrow-parens": ["error", "always"], | ||
"max-len": ["error", {"code": 100}], | ||
"implicit-arrow-linebreak": ["error", "beside"] | ||
} | ||
"plugins": ["prettier"], | ||
"extends": ["eslint:recommended"], | ||
"parserOptions": { | ||
"sourceType": "module", | ||
"ecmaVersion": 2017 | ||
}, | ||
"env": { | ||
"browser": true, | ||
"node": true, | ||
"es6": true, | ||
"mocha": true | ||
}, | ||
"rules": { | ||
"no-throw-literal": "off", | ||
"operator-assignment": "off", | ||
"no-unused-vars": [ | ||
"error", | ||
{ | ||
"vars": "all", | ||
"args": "after-used" | ||
} | ||
], | ||
"comma-dangle": "error", | ||
"indent": ["error", 2, { "SwitchCase": 1 }], | ||
"quotes": ["error", "single"], | ||
"semi": ["error", "always"], | ||
"no-console": "off", | ||
"camelcase": "off", | ||
"object-curly-spacing": ["error", "never"], | ||
"prefer-const": "off", | ||
"no-underscore-dangle": "off", | ||
"no-param-reassign": "off", | ||
"no-plusplus": "off", | ||
"no-useless-escape": "off", | ||
"no-restricted-properties": "off", | ||
"consistent-return": "off", | ||
"guard-for-in": "off", | ||
"no-loop-func": "off", | ||
"curly": ["error", "all"], | ||
"brace-style": ["error", "1tbs"], | ||
"default-case": "error", | ||
"prefer-destructuring": "off", | ||
"padding-line-between-statements": [ | ||
"error", | ||
{ "blankLine": "always", "prev": "*", "next": "block-like" }, | ||
{ "blankLine": "always", "prev": "block-like", "next": "*" } | ||
], | ||
"max-len": ["error", { "code": 100 }], | ||
"implicit-arrow-linebreak": ["error", "beside"], | ||
"no-control-regex": "off", | ||
"arrow-parens": ["error", "always"] | ||
}, | ||
"settings": { | ||
"import/resolver": "webpack" | ||
} | ||
} |
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
Empty file.
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,7 @@ | ||
organization=peerplays-network | ||
projectKey=peerplays-network_peerplaysjs-lib | ||
serverUrl=https://sonarcloud.io | ||
serverVersion=7.8.0.24676 | ||
dashboardUrl=https://sonarcloud.io/dashboard?id=peerplays-network_peerplaysjs-lib | ||
ceTaskId=AWqfCNTGvoFfNZkNe5G1 | ||
ceTaskUrl=https://sonarcloud.io/api/ce/task?id=AWqfCNTGvoFfNZkNe5G1 |
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,32 @@ | ||
# https://docs.sonarqube.org/latest/analysis/analysis-parameters/#AnalysisParameters-projectBaseDir | ||
#----- Project key | ||
sonar.projectKey=peerplays-network_peerplaysjs-lib | ||
|
||
sonar.organization=peerplays-network | ||
|
||
# Path to sources | ||
sonar.sources=lib/ | ||
|
||
sonar.projectDescription='Pure JavaScript Peerplaysjs library for node.js and browsers.' | ||
|
||
sonar.links.homepage=https://www.peerplays.com/ | ||
|
||
sonar.links.issue=https://github.com/peerplays-network/peerplaysjs-lib/issues | ||
|
||
sonar.links.scm=https://github.com/peerplays-network/peerplaysjs-lib | ||
|
||
sonar.host.url=https://sonarcloud.io | ||
|
||
#sonar.exclusions= | ||
#sonar.inclusions= | ||
|
||
# Path to tests | ||
#sonar.tests= | ||
#sonar.test.exclusions= | ||
#sonar.test.inclusions= | ||
|
||
# Source encoding | ||
#sonar.sourceEncoding=UTF-8 | ||
|
||
# Exclusions for copy-paste detection | ||
#sonar.cpd.exclusions= |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
function nvm | ||
bass source (brew --prefix nvm)/nvm.sh --no-use ';' nvm $argv | ||
end | ||
|
||
set -x NVM_DIR ~/.nvm | ||
nvm use default --silent |
Oops, something went wrong.