JonathanTorres\Construct\Construct::lgtmFiles PHP Method

lgtmFiles() protected method

Generate LGTM configuration files.
protected lgtmFiles ( ) : void
return void
    protected function lgtmFiles()
    {
        $this->file->copy(__DIR__ . '/stubs/MAINTAINERS.stub', $this->projectLower . '/' . 'MAINTAINERS');
        $this->file->copy(__DIR__ . '/stubs/lgtm.stub', $this->projectLower . '/' . '.lgtm');
        $this->exportIgnores[] = 'MAINTAINERS';
        $this->exportIgnores[] = '.lgtm';
    }