mirror of
https://github.com/oceanprotocol/ocean-subgraph.git
synced 2024-12-02 05:57:29 +01:00
4ac408de51
Signed-off-by: mihaisc <mihai.scarlat@smartcontrol.ro>
15 lines
360 B
Plaintext
15 lines
360 B
Plaintext
{
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"project": ["./tsconfig.json"]
|
|
},
|
|
"extends": ["oceanprotocol", "plugin:prettier/recommended"],
|
|
"plugins": ["@typescript-eslint"],
|
|
"rules": {
|
|
"no-use-before-define": "off",
|
|
"eqeqeq": "off",
|
|
"@typescript-eslint/no-use-before-define": "error",
|
|
"no-undef": ["warn"]
|
|
}
|
|
}
|