Sha256: 8d7ab83e41b1968d8430633ffb5c4f6582a5324eaba013f2d509adc7fa9968a0

Contents?: true

Size: 1 KB

Versions: 8

Compression:

Stored size: 1 KB

Contents

## Introduction

`Too Many Instance Variables` is a special case of `LargeClass`. 

## Example

Given this configuration

```yaml
TooManyInstanceVariables:
  max_instance_variables: 3
```

and this code:

```Ruby
class TooManyInstanceVariables
  def initialize
    @arg_1 = :dummy
    @arg_2 = :dummy
    @arg_3 = :dummy
    @arg_4 = :dummy
  end
end
```

`reek` would emit the following warning:

```
test.rb -- 5 warnings:
  [1]:TooManyInstanceVariables has at least 4 instance variables (TooManyInstanceVariables)
```
## Current Support in `reek`

`reek` only counts the instance variables you use explicitly like in the example above. Class macros like `attr_accessor` are disregarded.

## Configuration

`reek`'s `Too Many Instance Variables` detector offers the [Basic Smell Options](Basic-Smell-Options.md), plus:

| Option         | Value       | Effect  |
| ---------------|-------------|---------|
| max_instance_variables     | integer | The maximum number of instance variables that are permitted. Defaults to 9 |

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
reek-3.1 docs/Too-Many-Instance-Variables.md
reek-3.0.4 docs/Too-Many-Instance-Variables.md
reek-3.0.3 docs/Too-Many-Instance-Variables.md
reek-3.0.2 docs/Too-Many-Instance-Variables.md
reek-3.0.1 docs/Too-Many-Instance-Variables.md
reek-3.0.0 docs/Too-Many-Instance-Variables.md
reek-2.2.1 docs/Too-Many-Instance-Variables.md
reek-2.2.0 docs/Too-Many-Instance-Variables.md