UNPKG

rucken

Version:

Console tools and scripts for nx and not only that I (EndyKaufman) use to automate the workflow and speed up the development process

42 lines (41 loc) 1.19 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DEFAULT_COPY_PASTE_CONFIG = void 0; exports.DEFAULT_COPY_PASTE_CONFIG = { copyPaste: { extensions: 'ts,html,htm,scss,css,txt,json,yaml,yml,xml,js.esm,sh', cases: [ // 🐪 camelCase 'camelCase', // 🐫 PascalCase 'pascalCase', // 🐫 UpperCamelCase 'upperCamelCase', //🥙 kebab-case 'kebabCase', // 🐍 snake_case 'snakeCase', // 📣 CONSTANT_CASE 'constantCase', // 🚂 Train-Case 'trainCase', // 🕊 Ada_Case 'adaCase', // 👔 COBOL-CASE 'cobolCase', // 📍 Dot.notation // 'dotNotation', // 📂 Path/case // 'pathCase', // 🛰 Space case 'spaceCase', // 🏛 Capital Case 'capitalCase', // 🔡 lower case 'lowerCase', // 🔠 UPPER CASE 'upperCase', ], replaceEnvsKeyPattern: '%key%', }, };