22 lines
634 B
JSON
22 lines
634 B
JSON
{
|
|
"extends": ["tslint-config-airbnb", "tslint-react-hooks"],
|
|
"rules": {
|
|
"import-name": false,
|
|
"ter-arrow-parens": false,
|
|
"align": false,
|
|
"max-line-length": [true, 140],
|
|
"function-name": [
|
|
true,
|
|
{
|
|
"function-regex": "^[a-zA-Z$][\\w\\d]+$",
|
|
"method-regex": "^[a-z$][\\w\\d]+$",
|
|
"private-method-regex": "^[a-z$][\\w\\d]+$",
|
|
"protected-method-regex": "^[a-z$][\\w\\d]+$",
|
|
"static-method-regex": "^[a-z$][\\w\\d]+$"
|
|
}
|
|
],
|
|
"variable-name": {
|
|
"options": ["ban-keywords", "check-format", "allow-leading-underscore", "allow-pascal-case"]
|
|
}
|
|
}
|
|
} |