According to [the Style Guide](https://vuejs.org/v2/style-guide/#Private-property-names-essential) we should warn about following keys: - `_foo` - `$foo` and encourage to prefix private properties with `$_` (e.g. `$_foo`). This rule could live alongside `no-reserved-keys`, but we might as well keep only this rule, to not duplicate warnings.