mirror of
https://github.com/fleetbase/fleetbase.git
synced 2025-12-19 14:18:57 +00:00
18 lines
295 B
JavaScript
18 lines
295 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
trailingComma: 'es5',
|
|
tabWidth: 4,
|
|
semi: true,
|
|
singleQuote: true,
|
|
printWidth: 190,
|
|
overrides: [
|
|
{
|
|
files: '*.{hbs,js,ts}',
|
|
options: {
|
|
singleQuote: false,
|
|
},
|
|
},
|
|
],
|
|
};
|