Created
November 23, 2020 05:35
-
-
Save broerjuang/688b8733e582bc71092f09683a3f04d8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"defaultSeverity": "error", | |
"rules": { | |
"array-type": [true, "generic"], | |
"interface-name": [true, "never-prefix"], | |
"interface-over-type-literal": false, | |
"max-classes-per-file": false, | |
"member-access": [true, "no-public"], | |
"no-empty": [true, "allow-empty-functions"], | |
"no-unused-expression": [true, "allow-fast-null-checks"], | |
"object-literal-sort-keys": false, | |
"ordered-imports": false, | |
"prefer-const": false, | |
"quotemark": [ | |
true, | |
"single", | |
"avoid-escape", | |
"avoid-template", | |
"jsx-double" | |
], | |
"variable-name": false | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment