Skip to content

Commit 020dc85

Browse files
committed
Update .editorconfig and formatting
1 parent 4b85c72 commit 020dc85

File tree

8 files changed

+10
-15
lines changed

8 files changed

+10
-15
lines changed

.editorconfig

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,10 @@ indent_size = 4
66
end_of_line = lf
77
charset = utf-8
88
trim_trailing_whitespace = true
9-
10-
[*.{js,jsx,ts,tsx}]
119
insert_final_newline = true
1210

1311
[*.md]
1412
trim_trailing_whitespace = false
1513

16-
[*.json]
14+
[*.{json,yml}]
1715
indent_size = 2
18-
19-
[*.yml]
20-
indent_size = 2

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ coverage
3030

3131
# Misc
3232
.DS_Store
33-
Thumbs.db
33+
Thumbs.db

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ before_install:
99
- scripts/install_dgraph.sh
1010
script:
1111
- scripts/build.sh
12-
after_success: npm run coveralls
12+
after_success: npm run coveralls

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ and understand how to run and work with Dgraph.
1414

1515
[docs.dgraph.io]:https://docs.dgraph.io
1616

17-
## Table of Contents
17+
## Table of contents
1818
- [Install](#install)
1919
- [Quickstart](#quickstart)
20-
- [Using the Client](#using-the-client)
20+
- [Using the client](#using-the-client)
2121
* [Create the client](#create-the-client)
2222
* [Alter the database](#alter-the-database)
2323
* [Create a transaction](#create-a-transaction)
@@ -45,7 +45,7 @@ instructions in the README of that project.
4545

4646
[simple]: https://github.com/dgraph-io/dgraph-js/tree/master/examples/simple
4747

48-
## Using the Client
48+
## Using the client
4949

5050
### Create the client
5151
A `DgraphClient` object can be initialised by passing it a list of

examples/simple/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ for Dgraph.
77

88
## Running
99

10-
### Start Dgraph Server
10+
### Start Dgraph server
1111
You will need to install [Dgraph v0.9.4 or above][releases] and run it.
1212

1313
[releases]: https://github.com/dgraph-io/dgraph/releases

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@
2525
"src/**/*",
2626
"tests/**/*"
2727
]
28-
}
28+
}

tsconfig.release.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
"include": [
77
"src/**/*"
88
]
9-
}
9+
}

tslint.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@
3535
"avoid-escape"
3636
]
3737
}
38-
}
38+
}

0 commit comments

Comments
 (0)