-
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.
* ci: sonarlint WAL-223 * chore: rebuild * chore(release): 0.6.1
- Loading branch information
Showing
159 changed files
with
13,434 additions
and
243 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.
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
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
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.