jxt
Version:
JSON/XML Translator. Set/retrieve data from XML just like working with a dictionary.
43 lines (42 loc) • 1.29 kB
JSON
{
"extends": "tslint:recommended",
"linterOptions": {
"exclude": ["build", "lib"]
},
"rules": {
"quotemark": [true, "single", "jsx-double"],
"trailing-comma": [true, "never"],
"no-consecutive-blank-lines": [true, 2],
"max-classes-per-file": [false],
"interface-name": [false],
"arrow-parens": [true, "ban-single-arg-parens"],
"max-line-length": [false],
"no-console": [false],
"variable-name": [
true,
"ban-keywords",
"check-format",
"allow-leading-underscore",
"allow-pascal-case"
],
"semicolon": [true, "always"]
},
"jsRules": {
"quotemark": [true, "single", "jsx-double"],
"trailing-comma": [true, "never"],
"no-consecutive-blank-lines": [true, 2],
"max-classes-per-file": [false],
"interface-name": [false],
"arrow-parens": [true, "ban-single-arg-parens"],
"max-line-length": [false],
"no-console": [false],
"variable-name": [
true,
"ban-keywords",
"check-format",
"allow-leading-underscore",
"allow-pascal-case"
],
"semicolon": [true, "always"]
}
}