๐ŸŽฏ

config-file-generator

๐ŸŽฏSkill

from ntaksh42/agents

VibeIndex|
What it does

Generates standardized configuration files for various development tools like ESLint, Prettier, TypeScript, and Webpack.

๐Ÿ“ฆ

Part of

ntaksh42/agents(78 items)

config-file-generator

Installation

๐Ÿ“‹ No install commands found in docs. Showing default command. Check GitHub for actual instructions.
Quick InstallInstall with npx
npx skills add ntaksh42/agents --skill config-file-generator
2Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Generate configuration files for tools like ESLint, Prettier, TypeScript, and Webpack. Use when setting up project tooling or standardizing configurations.

Overview

# Config File Generator Skill

ๅ„็จฎ่จญๅฎšใƒ•ใ‚กใ‚คใƒซใ‚’็”Ÿๆˆใ™ใ‚‹ใ‚นใ‚ญใƒซใงใ™ใ€‚

ไธปใชๆฉŸ่ƒฝ

  • ESLint: .eslintrc.js
  • Prettier: .prettierrc
  • TypeScript: tsconfig.json
  • Jest: jest.config.js
  • Webpack: webpack.config.js
  • Babel: babel.config.js
  • EditorConfig: .editorconfig

ESLint

```javascript

// .eslintrc.js

module.exports = {

env: {

browser: true,

es2021: true,

node: true

},

extends: [

'eslint:recommended',

'plugin:@typescript-eslint/recommended',

'plugin:react/recommended',

'prettier'

],

parser: '@typescript-eslint/parser',

parserOptions: {

ecmaFeatures: {

jsx: true

},

ecmaVersion: 'latest',

sourceType: 'module'

},

plugins: ['react', '@typescript-eslint'],

rules: {

'no-console': 'warn',

'@typescript-eslint/no-unused-vars': 'error',

'react/react-in-jsx-scope': 'off'

}

};

```

Prettier

```json

{

"semi": true,

"trailingComma": "es5",

"singleQuote": true,

"printWidth": 80,

"tabWidth": 2,

"useTabs": false,

"arrowParens": "always",

"endOfLine": "lf"

}

```

tsconfig.json

```json

{

"compilerOptions": {

"target": "ES2020",

"module": "commonjs",

"lib": ["ES2020"],

"outDir": "./dist",

"rootDir": "./src",

"strict": true,

"esModuleInterop": true,

"skipLibCheck": true,

"forceConsistentCasingInFileNames": true,

"resolveJsonModule": true,

"declaration": true,

"declarationMap": true,

"sourceMap": true

},

"include": ["src/*/"],

"exclude": ["node_modules", "dist"]

}

```

.editorconfig

```ini

root = true

[*]

charset = utf-8

end_of_line = lf

indent_style = space

indent_size = 2

insert_final_newline = true

trim_trailing_whitespace = true

[*.md]

trim_trailing_whitespace = false

[*.py]

indent_size = 4

```

ใƒใƒผใ‚ธใƒงใƒณๆƒ…ๅ ฑ

  • Version: 1.0.0

More from this repository10

๐ŸŽฏ
document-summarizer๐ŸŽฏSkill

Generates concise summaries of documents by extracting key information and condensing text into a more digestible format.

๐ŸŽฏ
algorithmic-art๐ŸŽฏSkill

Generates creative algorithmic art using p5.js, creating unique visual designs with patterns, fractals, and dynamic animations.

๐ŸŽฏ
sql-query-helper๐ŸŽฏSkill

Generates, optimizes, and explains SQL queries with best practices, providing intelligent database query solutions across multiple database platforms.

๐ŸŽฏ
plantuml-diagram๐ŸŽฏSkill

Generates PlantUML diagrams (class, sequence, component) to visually represent system architecture and UML models.

๐ŸŽฏ
azure-pipelines-generator๐ŸŽฏSkill

Generates Azure Pipelines YAML configurations automatically for CI/CD workflows, supporting multi-stage builds and deployments across different environments.

๐ŸŽฏ
azure-dashboard-creator๐ŸŽฏSkill

Automates Azure dashboard creation by generating JSON configurations and visualizing cloud resource metrics with customizable layouts and widgets.

๐ŸŽฏ
ai-feedback-loop-optimizer๐ŸŽฏSkill

Optimizes AI output through iterative feedback loops, automatically improving prompts, evaluating results, and converging on high-quality responses via systematic A/B testing and strategic refinement.

๐ŸŽฏ
yaml-pipeline-validator๐ŸŽฏSkill

Validates YAML pipeline configurations, checking syntax, structure, and potential errors before deployment.

๐ŸŽฏ
systematic-debugging๐ŸŽฏSkill

Systematically investigates root causes of technical issues through a rigorous four-phase framework, ensuring comprehensive understanding before proposing any fixes.

๐ŸŽฏ
azure-wiki-generator๐ŸŽฏSkill

Generates comprehensive Azure documentation wikis by analyzing cloud infrastructure, services, and architectural patterns automatically.