utilite
Version:
Powerful utility library for JS
10 lines (9 loc) • 526 B
JavaScript
module.exports = {
semi: true, // Add semicolons at the end of statements
singleQuote: false, // Use single quotes for strings
trailingComma: "all", // Add trailing commas wherever applicable (e.g., in arrays and objects)
tabWidth: 2, // Set the tab width to 2 spaces
printWidth: 80, // Specify the maximum line length
arrowParens: "always", // Always include parentheses around arrow function parameters
endOfLine: "auto", // Use the operating system's line-ending style (LF on macOS/Linux, CRLF on Windows)
};