2021-01-22 15:49:02 +01:00
|
|
|
module.exports = {
|
|
|
|
|
endOfLine: 'lf',
|
|
|
|
|
printWidth: 100,
|
|
|
|
|
semi: true,
|
|
|
|
|
singleQuote: true,
|
|
|
|
|
tabWidth: 2,
|
2021-01-25 08:05:14 +01:00
|
|
|
trailingComma: 'all',
|
2021-01-22 15:49:02 +01:00
|
|
|
overrides: [
|
|
|
|
|
{
|
2021-01-25 08:05:14 +01:00
|
|
|
files: ['*.js'],
|
2021-01-22 15:49:02 +01:00
|
|
|
options: {
|
2021-01-25 08:05:14 +01:00
|
|
|
trailingComma: 'all',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
],
|
2021-01-22 15:49:02 +01:00
|
|
|
};
|