mirror of
https://github.com/renovatebot/renovate.git
synced 2024-12-22 21:48:32 +00:00
12 lines
309 B
TypeScript
12 lines
309 B
TypeScript
import type { Preset } from '../types';
|
|
|
|
/* eslint sort-keys: ["error", "asc", {caseSensitive: false, natural: true}] */
|
|
|
|
export const presets: Record<string, Preset> = {
|
|
safeEnv: {
|
|
allowedEnv: ['GO*'],
|
|
description:
|
|
'Hopefully safe environment variables to allow users to configure.',
|
|
},
|
|
};
|