Skip to content
Snippets Groups Projects
Unverified Commit 3548290f authored by Acid Chicken (硫酸鶏)'s avatar Acid Chicken (硫酸鶏) Committed by GitHub
Browse files

Fix tslint.json styles (#4219)

parent b165b90c
No related branches found
No related tags found
No related merge requests found
......@@ -7,15 +7,15 @@
"jsRules": {},
"rules": {
"align": false,
"indent": ["tab"],
"quotemark": ["single"],
"indent": [true, "tabs"],
"quotemark": [true, "single"],
"no-var-requires": false,
"no-string-throw": false,
"trailing-comma": [false],
"object-literal-sort-keys": false,
"curly": false,
"no-console": [false],
"no-empty":false,
"no-empty": false,
"ordered-imports": [false],
"arrow-parens": false,
"array-type": [true, "array"],
......@@ -31,11 +31,12 @@
"max-classes-per-file": false,
"member-ordering": [false],
"ban-types": [
true,
"Object"
],
"ban": [
true,
{"name": ["*", "forEach"], "message": "Use for-of loop instead."}
{ "name": ["*", "forEach"], "message": "Use for-of loop instead." }
],
"no-duplicate-string": false,
"no-commented-code": false,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment