8 أسطر
210 B
JavaScript
8 أسطر
210 B
JavaScript
module.exports = {
|
|
semi: true,
|
|
trailingComma: 'es5', // Trailing commas only where valid in ES5 (objects, arrays, not function arguments)
|
|
singleQuote: true,
|
|
printWidth: 120,
|
|
tabWidth: 4,
|
|
};
|