1
0
mirror of https://github.com/mgerb/react-starter synced 2026-01-08 08:02:49 +00:00
Files
react-starter/tslint.json
2018-08-13 21:20:16 -05:00

13 lines
389 B
JSON

{
"extends": "tslint-config-airbnb",
"rules": {
"semicolon": [true, "always", "ignore-bound-class-methods"],
"max-line-length": [true, 120],
"variable-name": [true, "ban-keywords", "check-format", "allow-pascal-case"],
"import-name": false,
"ter-arrow-parens": [true, "as-needed"],
"align": [true, "parameters", "statements"],
"member-access": [true]
}
}