forked from rsksmart/rif-relay
-
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
Pablo Pedemonte
committed
Aug 11, 2020
1 parent
7d05de4
commit 03b847e
Showing
259 changed files
with
19,042 additions
and
16,249 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,22 +1,59 @@ | ||
module.exports = { | ||
"env": { | ||
"browser": true, | ||
"es6": true, | ||
"jest": true, | ||
"mocha": true, | ||
"node": true, | ||
env: { | ||
browser: true, | ||
es6: true, | ||
jest: true, | ||
mocha: true, | ||
node: true | ||
}, | ||
globals: { | ||
artifacts: false, | ||
assert: false, | ||
contract: false, | ||
web3: false | ||
}, | ||
extends: | ||
[ | ||
'standard-with-typescript' | ||
], | ||
// This is needed to add configuration to rules with type information | ||
parser: '@typescript-eslint/parser', | ||
parserOptions: { | ||
// The 'tsconfig.eslint.json' is needed to add all JavaScript files to the project | ||
project: ['./tsconfig.json', './tsconfig.eslint.json'] | ||
}, | ||
ignorePatterns: [ | ||
'types/truffle-contracts', | ||
'dist/' | ||
], | ||
rules: { | ||
'no-console': 'off' | ||
}, | ||
overrides: [ | ||
{ | ||
files: ['*.test.js', '*.test.ts'], | ||
rules: { | ||
'no-unused-expressions': 'off', | ||
// chai assertions trigger this rule | ||
'@typescript-eslint/no-unused-expressions': 'off', | ||
'@typescript-eslint/no-non-null-assertion': 'off' | ||
} | ||
}, | ||
"globals" : { | ||
"artifacts": false, | ||
"assert": false, | ||
"contract": false, | ||
"web3": false, | ||
}, | ||
"extends": "eslint:recommended", | ||
"parserOptions": { | ||
"ecmaVersion": 2017 | ||
}, | ||
"rules": { | ||
"no-console": "off", | ||
{ | ||
// otherwise it will raise an error in every JavaScript file | ||
files: ['*.ts'], | ||
rules: { | ||
'@typescript-eslint/prefer-ts-expect-error': 'off', | ||
// allow using '${val}' with numbers, bool and null types | ||
'@typescript-eslint/restrict-template-expressions': [ | ||
'error', | ||
{ | ||
allowNumber: true, | ||
allowBoolean: true, | ||
allowNullable: 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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#https://help.github.com/en/articles/about-code-owners | ||
|
||
* @tabookey/dev | ||
* @openeth-dev/dev |
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,27 @@ | ||
/build/ | ||
.DS_Store | ||
/node_modules/ | ||
/server/src/github.com/ethereum/go-ethereum/ | ||
/metacoin/ | ||
tabookey-gasless-*.tgz | ||
node_modules | ||
/.vscode/settings.json | ||
/.idea/ | ||
/server/pkg/darwin_amd64/ | ||
/server/pkg/linux_amd64/ | ||
/server/bin/ | ||
/serverdock/version | ||
/.idea/* | ||
!/.idea/dictionaries/ | ||
/secret_mnemonic | ||
/.0x-artifacts/ | ||
/coverage/ | ||
/coverage.json | ||
/artifacts/ | ||
/webtools/tabookey-webtools.pack.js | ||
/singleton/ | ||
/webtools/openeth-webtools.pack.js | ||
/.eslintcache | ||
/src/common/interfaces/ | ||
/ganache.pid | ||
/types/truffle-contracts/ | ||
/dist/ | ||
cache | ||
/src/cli/compiled/ | ||
/opengsn-gsn-*.tgz | ||
/RelayClient.ts | ||
/RelayProvider.ts | ||
/GSNConfigurator.ts | ||
/GsnTestEnvironment.ts | ||
artifacts | ||
/yarn-error.log | ||
/jsrelay/gsndata/ | ||
/jsrelay/dist/relayserver.js |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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,7 @@ | ||
{ | ||
"extends": "solhint:recommended", | ||
"rules": { | ||
"compiler-version": ["error","^0.6.2"], | ||
"mark-callable-contracts": ["off"] | ||
} | ||
} |
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 @@ | ||
contracts/0x |
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
Oops, something went wrong.