mirror of
https://github.com/home-assistant/frontend.git
synced 2025-04-23 12:57:21 +00:00

Failed to rebase previous branch and am taking my working changes and applying to a new branch based off of current master. Updated tslint.json to allow for prefixed `_` to variable names
16 lines
353 B
JSON
16 lines
353 B
JSON
{
|
|
"extends": ["tslint:latest", "tslint-eslint-rules", "tslint-config-prettier"],
|
|
"rules": {
|
|
"interface-name": false,
|
|
"no-submodule-imports": false,
|
|
"ordered-imports": false,
|
|
"object-literal-sort-keys": false,
|
|
"variable-name": [
|
|
true,
|
|
"ban-keywords",
|
|
"check-format",
|
|
"allow-leading-underscore"
|
|
]
|
|
}
|
|
}
|