blob: 57779e569cbc14e2f3c68c83dbdfddb32f51baf7 (
plain)
1
2
3
4
5
6
7
8
9
|
module.exports = {
semi: true, // Add semicolons at the end of statements
trailingComma: 'es5', // Add trailing commas where valid in ES5 (objects, arrays, etc.)
singleQuote: true, // Use single quotes instead of double quotes
printWidth: 80, // Specify the line length that the printer will wrap on
tabWidth: 2, // Specify the number of spaces per indentation-level
useTabs: false, // Indent lines with spaces instead of tabs
endOfLine: 'lf', // Use Line Feed as the line ending
};
|