Style: change 2 spaces to 4

This commit is contained in:
jas0ncn 2018-09-02 02:57:09 +08:00
parent 37739d7f44
commit c81a02b2fc
15 changed files with 212 additions and 195 deletions

12
.editorconfig Normal file
View File

@ -0,0 +1,12 @@
# http://editorconfig.org
root = true
[*]
indent_style = space
indent_size = 4
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[*.md]
trim_trailing_whitespace = false

View File

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2018 Dreamacro
Copyright (c) 2018 ClashTeam
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View File

@ -1,3 +1,8 @@
{
"extends": "tslint-config-standard"
"extends": "tslint-config-standard",
"rules": [
{
"indent": [true, "spaces", 4]
}
]
}