dotenv constant

LanguageInfo const dotenv

The information provided by linguist about the "Dotenv" language or content type.

Implementation

static const LanguageInfo dotenv = LanguageInfo(
  name: 'Dotenv',
  type: LanguageType.data,
  aliases: [],
  extensions: ['.env'],
  filenames: [
    '.env',
    '.env.ci',
    '.env.dev',
    '.env.development',
    '.env.development.local',
    '.env.example',
    '.env.local',
    '.env.prod',
    '.env.production',
    '.env.staging',
    '.env.test',
    '.env.testing',
  ],
  interpreters: [],
  linguistColor: '#e5d559',
  aceMode: 'text',
  textMateScope: 'source.dotenv',
);