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

export default class Configuration extends Component {
  constructor(config) {

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