# Project 61: Testing Type hints in VS Code / Reunite

## Debrief

#### *Reunite*

### What made us smile

- It's cool to have documentation right in place
- Convinient tooltips identifying the openapi type


### What did you find confusing?

- Adding rules to closest redocly.yaml to the openapi spec has no effect on linting in case with multiple redocly.yaml files. Only adding rules to the root config takes effect.
- It would be great if configurable rules could validate the subject type and underline the invalid values


#### Ruleset

```yaml
rules:
  rule/to-snake-case:
    subject:
      type: Operation
      property: 
        - operationId
    assertions:
      casing: snake_case
  rule/max-tag-description:
    subject:
      type: Tag
      property: description
    assertions:
      maxLength: 30
  rule/require-parameter-example:
    subject: 
       type: Parameter
    assertions:
      requireAny: 
        - example
        - examples
```