1
0
mirror of https://github.com/oceanprotocol/commons.git synced 2023-03-15 18:03:00 +01:00

Merge pull request #211 from oceanprotocol/feature/tabwidth

remove editorconfig
This commit is contained in:
Matthias Kretschmann 2019-12-18 11:28:15 +01:00 committed by GitHub
commit 3d9ed9d1c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 16 deletions

View File

@ -1,12 +0,0 @@
root = true
[*]
charset = utf-8
indent_size = 4
end_of_line = lf
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
[*.{json,yml,yaml,md}]
indent_size = 2

View File

@ -1,5 +1,15 @@
{
"semi": false,
"singleQuote": true,
"trailingComma": "none"
"trailingComma": "none",
"tabWidth": 4,
"endOfLine": "lf",
"overrides": [
{
"files": ["*.{json,yml,yaml,md}"],
"options": {
"tabWidth": 2
}
}
]
}

View File

@ -1,7 +1,6 @@
version: '3.4'
services:
client:
build:
context: ./client
@ -21,4 +20,3 @@ services:
dockerfile: ./Dockerfile
ports:
- 4000:4000