10 lines
161 B
JavaScript
10 lines
161 B
JavaScript
|
module.exports = {
|
||
|
semi: true,
|
||
|
trailingComma: 'all',
|
||
|
singleQuote: true,
|
||
|
printWidth: 80,
|
||
|
tabWidth: 4,
|
||
|
useTabs: false,
|
||
|
plugins: [],
|
||
|
};
|