Added first Typescript files

This commit is contained in:
Alejandro Celaya
2020-08-22 08:47:19 +02:00
parent a91f1b3bd4
commit 72de9d4ff8
8 changed files with 135 additions and 13 deletions

View File

@@ -28,6 +28,12 @@
}
},
"rules": {
"max-len": ["error", {
"code": 120,
"ignoreStrings": true,
"ignoreTemplateLiterals": true
}],
"no-mixed-operators": "off",
"comma-dangle": ["error", "always-multiline"],
"no-invalid-this": "off",
"no-inline-comments": "off",
@@ -55,6 +61,12 @@
"@shlinkio/js-coding-standard"
],
"rules": {
"max-len": ["error", {
"code": 120,
"ignoreStrings": true,
"ignoreTemplateLiterals": true
}],
"no-mixed-operators": "off",
"react/display-name": "off"
}
}