11 lines
182 B
Plaintext
11 lines
182 B
Plaintext
|
|
module.exports = {
|
||
|
|
semi: true,
|
||
|
|
singleQuote: true,
|
||
|
|
tabWidth: 2,
|
||
|
|
useTabs: false,
|
||
|
|
trailingComma: 'all',
|
||
|
|
printWidth: 100,
|
||
|
|
bracketSpacing: true,
|
||
|
|
arrowParens: 'always',
|
||
|
|
};
|