mirror of
https://github.com/cerc-io/watcher-ts
synced 2024-11-19 20:36:19 +00:00
9a3ac28a5d
* Created a smoke test for uni-watcher. * Added test for createPool. * Added more pool tests. * Using ethers instead of hardhat-ethers in smoke test. Co-authored-by: prathamesh0 <prathamesh.musale0@gmail.com>
37 lines
828 B
JSON
37 lines
828 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"es2021": true
|
|
},
|
|
"extends": [
|
|
"semistandard",
|
|
"plugin:@typescript-eslint/recommended"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": 12,
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": [
|
|
"@typescript-eslint"
|
|
],
|
|
"rules": {
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"@typescript-eslint/explicit-module-boundary-types": [
|
|
"warn",
|
|
{
|
|
"allowArgumentsExplicitlyTypedAsAny": true
|
|
}
|
|
]
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": ["*.test.ts", "test/*.ts"],
|
|
"rules": {
|
|
"no-unused-expressions": "off",
|
|
"no-prototype-builtins":"off"
|
|
}
|
|
}
|
|
]
|
|
}
|