aboutsummaryrefslogtreecommitdiff
path: root/lib/components/configuration.js
blob: f5787ab0f72220bf17598319bf672848273ff902 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { Component } from '@serpentity/serpentity';

/**
  * Stores global behavior configuration that can be adjusted on the go. For
  * static configuration see lib/config.js instead.
  */
export default class Configuration extends Component {
  constructor(config) {

    super(config);
    this.lineLength = this.lineLength || 500;
  }
};