mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-07-18 00:55:50 +00:00
11 lines
530 B
JavaScript
11 lines
530 B
JavaScript
// prettier.config.js or .prettierrc.js
|
|
export default {
|
|
semi: true, // Add semicolons at the end of statements
|
|
singleQuote: true, // Use single quotes instead of double
|
|
tabWidth: 2, // Set the indentation width
|
|
trailingComma: 'es5', // Add trailing commas where valid in ES5
|
|
printWidth: 80, // Wrap lines at 80 characters
|
|
bracketSpacing: true, // Add spaces inside object braces
|
|
arrowParens: 'always', // Always include parentheses around arrow function parameters
|
|
endOfLine: 'lf', // Enforce LF for all files
|
|
};
|