We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/TrueCrimeDev/ahk-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
module.exports = {
// Print width - line length that Prettier will try to maintain
printWidth: 100,
// Tab width - number of spaces per indentation level
tabWidth: 2,
// Use tabs instead of spaces
useTabs: false,
// Semicolons at the ends of statements
semi: true,
// Use single quotes instead of double quotes
singleQuote: true,
// Quote style for object properties
quoteProps: 'as-needed',
// Use single quotes in JSX
jsxSingleQuote: true,
// Trailing commas where valid in ES5 (objects, arrays, etc.)
trailingComma: 'es5',
// Spaces between brackets in object literals
bracketSpacing: true,
// Put the > of a multi-line JSX element at the end of the last line
bracketSameLine: false,
// Include parentheses around a sole arrow function parameter
arrowParens: 'avoid',
// Format only files that have a pragma comment
requirePragma: false,
// Insert pragma comment at the top of formatted files
insertPragma: false,
// How to handle whitespace in prose
proseWrap: 'preserve',
// How to handle whitespace in HTML
htmlWhitespaceSensitivity: 'css',
// Line ending style
// Use "auto" to avoid CRLF/LF churn on Windows when core.autocrlf is enabled.
endOfLine: 'auto',
// Control whether Prettier formats quoted code embedded in the file
embeddedLanguageFormatting: 'auto',
// Enforce single attribute per line in HTML, Vue and JSX
singleAttributePerLine: false,
// Plugin configurations for specific file types
overrides: [
{
files: '*.json',
options: {
printWidth: 80,
tabWidth: 2,
},
},
{
files: '*.md',
options: {
printWidth: 80,
proseWrap: 'always',
},
},
{
files: '*.yml',
options: {
tabWidth: 2,
singleQuote: false,
},
},
{
files: '*.yaml',
options: {
tabWidth: 2,
singleQuote: false,
},
},
],
};