bitcoinjs-lib/tslint.json

41 lines
983 B
JSON
Raw Normal View History

2019-03-05 15:51:45 +01:00
{
"defaultSeverity": "error",
"extends": ["tslint:recommended"],
"rules": {
2019-03-07 03:47:00 +01:00
"arrow-parens": [true, "ban-single-arg-parens"],
2019-03-05 15:51:45 +01:00
"curly": false,
"indent": [
true,
"spaces",
2
],
"interface-name": [false],
"match-default-export-name": true,
"max-classes-per-file": [false],
"member-access": [true, "no-public"],
2019-03-07 03:47:00 +01:00
"no-bitwise": false,
"no-console": false,
2019-03-05 15:51:45 +01:00
"no-empty": [true, "allow-empty-catch"],
"no-implicit-dependencies": [true, "dev"],
2019-03-05 15:51:45 +01:00
"no-return-await": true,
"no-var-requires": false,
"no-unused-expression": false,
"object-literal-sort-keys": false,
2019-09-12 10:35:08 +02:00
"quotemark": [true, "single", "avoid-escape"],
"typedef": [
true,
"call-signature",
"arrow-call-signature",
"property-declaration"
],
2019-03-05 15:51:45 +01:00
"variable-name": [
true,
"ban-keywords",
"check-format",
"allow-leading-underscore",
"allow-pascal-case"
]
},
"rulesDirectory": []
}