mirror of
https://github.com/fastmail/Squire.git
synced 2024-12-21 23:03:11 -05:00
17 lines
314 B
JavaScript
17 lines
314 B
JavaScript
|
/*global module */
|
||
|
module.exports = {
|
||
|
singleQuote: true,
|
||
|
tabWidth: 4,
|
||
|
quoteProps: 'consistent',
|
||
|
trailingComma: 'all',
|
||
|
overrides: [
|
||
|
{
|
||
|
files: ['*.html'],
|
||
|
options: {
|
||
|
tabWidth: 2,
|
||
|
printWidth: 1000,
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
};
|