snowflake-promise/tslint.json
2017-09-10 19:53:33 -07:00

32 lines
594 B
JSON

{
"rules": {
"no-unused-expression": true,
// "no-unused-variable": [true, {"ignore-pattern": "^_"}],
"no-duplicate-variable": true,
"curly": true,
"class-name": true,
"semicolon": [
"always"
],
"triple-equals": true,
"quotemark": [
"single"
],
"linebreak-style": [
"LF"
],
"eofline": true,
"no-conditional-assignment": true,
"typeof-compare": true,
"use-isnan": true,
"indent": [
true,
"spaces"
],
"arrow-return-shorthand": [
true
],
"no-trailing-whitespace": true
}
}