23 lines
291 B
JavaScript
23 lines
291 B
JavaScript
module.exports = {
|
|
arrowParens: 'always',
|
|
bracketSpacing: true,
|
|
endOfLine: 'auto',
|
|
printWidth: 80,
|
|
singleQuote: true,
|
|
tabWidth: 2,
|
|
trailingComma: 'all',
|
|
overrides: [
|
|
{
|
|
files: 'package*.json',
|
|
options: {
|
|
printWidth: 1000,
|
|
},
|
|
},
|
|
],
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|