mirror of
https://github.com/oceanprotocol/ocean-subgraph.git
synced 2024-12-02 05:57:29 +01:00
42af9acbe0
* Bump eslint-config-prettier from 7.2.0 to 8.0.0 Bumps [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) from 7.2.0 to 8.0.0. - [Release notes](https://github.com/prettier/eslint-config-prettier/releases) - [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/eslint-config-prettier/compare/v7.2.0...v8.0.0) Signed-off-by: dependabot[bot] <support@github.com> * update ESLint config * breaking eslint-config-prettier config merge, see https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md#version-800-2021-02-21 Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias Kretschmann <m@kretschmann.io>
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"]
|
|
}
|
|
}
|