mirror of
https://github.com/oceanprotocol/ocean-subgraph.git
synced 2024-12-02 05:57:29 +01:00
22 lines
556 B
Plaintext
22 lines
556 B
Plaintext
|
{
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"parserOptions": {
|
||
|
"project": ["./tsconfig.json"]
|
||
|
},
|
||
|
"extends": [
|
||
|
"oceanprotocol",
|
||
|
"plugin:@typescript-eslint/eslint-recommended",
|
||
|
"plugin:@typescript-eslint/recommended",
|
||
|
"plugin:prettier/recommended",
|
||
|
"prettier/react",
|
||
|
"prettier/standard",
|
||
|
"prettier/@typescript-eslint"
|
||
|
],
|
||
|
"plugins": ["@typescript-eslint", "prettier"],
|
||
|
"rules": {
|
||
|
"no-use-before-define": "off",
|
||
|
"@typescript-eslint/no-use-before-define": "error"
|
||
|
},
|
||
|
"env": { "es6": true, "node": true }
|
||
|
}
|