Skip to content

Commit 4d289d2

Browse files
committed
fix lint
1 parent ecd0692 commit 4d289d2

File tree

3 files changed

+17
-5
lines changed

3 files changed

+17
-5
lines changed

.prettierrc.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import prettierConfig from '@theguild/prettier-config';
2+
3+
export default {
4+
...prettierConfig,
5+
overrides: [
6+
...(prettierConfig.overrides || []),
7+
{
8+
files: '*.md{,x}',
9+
options: {
10+
semi: false,
11+
trailingComma: 'none',
12+
proseWrap: 'preserve',
13+
},
14+
},
15+
],
16+
};

.prettierrc.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

examples/README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,4 @@ This section contains several subgraph examples to help you get started with [Th
4343
13. **[Substreams Powered Subgraph](https://github.com/graphprotocol/graph-tooling/tree/adding-table/examples/substreams-powered-subgraph)**
4444
This example is a basic Substreams-powered subgraph, which includes the Substreams definition. It tracks new contract deployments on Ethereum and demonstrates integration with Graph Node using `substreams_entity_change` types and helpers.
4545

46-
To learn more about subgraphs, review [subgraphs]( https://thegraph.com/docs/en/subgraphs/developing/subgraphs/) on [The Graph docs]( https://thegraph.com/docs/en/).
47-
48-
49-
46+
To learn more about subgraphs, review [subgraphs](https://thegraph.com/docs/en/subgraphs/developing/subgraphs/) on [The Graph docs](https://thegraph.com/docs/en/).

0 commit comments

Comments
 (0)