ocean-subgraph/.eslintrc

27 lines
453 B
Plaintext
Raw Normal View History

{
"parser": "@typescript-eslint/parser",
2021-09-02 11:08:47 +02:00
"root": true,
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"plugins": [
"@typescript-eslint"
],
"rules": {
2021-09-02 11:08:47 +02:00
"comma-spacing": [
"error",
{
"before": false,
"after": true
}
],
"prefer-const": [
"off"
],
"prettier/prettier": "error",
"mocha-no-only/mocha-no-only": [
"error"
],
}
2021-09-02 11:08:47 +02:00
}