aboutsummaryrefslogtreecommitdiff
path: root/lib/components/configuration.js
blob: ddb4a27583ecf0e5c5637220c5fbb6a05cd77e34 (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 || 1000;
  }
};