mirror of
https://github.com/oceanprotocol/ocean-subgraph.git
synced 2024-12-02 05:57:29 +01:00
27 lines
453 B
Plaintext
27 lines
453 B
Plaintext
{
|
|
"parser": "@typescript-eslint/parser",
|
|
"root": true,
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended"
|
|
],
|
|
"plugins": [
|
|
"@typescript-eslint"
|
|
],
|
|
"rules": {
|
|
"comma-spacing": [
|
|
"error",
|
|
{
|
|
"before": false,
|
|
"after": true
|
|
}
|
|
],
|
|
"prefer-const": [
|
|
"off"
|
|
],
|
|
"prettier/prettier": "error",
|
|
"mocha-no-only/mocha-no-only": [
|
|
"error"
|
|
],
|
|
}
|
|
} |