configExists method

bool configExists()

Check if config file exists in current directory.

Returns true if the configuration file exists, false otherwise.

Implementation

bool configExists() {
  return File(configFileName).existsSync();
}