mirror of
https://github.com/geoffsee/open-gsio.git
synced 2025-09-08 22:56:46 +00:00
19 lines
316 B
JavaScript
19 lines
316 B
JavaScript
module.exports = {
|
|
semi: true,
|
|
singleQuote: true,
|
|
trailingComma: 'all',
|
|
printWidth: 100,
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
bracketSpacing: true,
|
|
arrowParens: 'avoid',
|
|
endOfLine: 'lf',
|
|
overrides: [
|
|
{
|
|
files: '*.{json,yml,yaml,md}',
|
|
options: {
|
|
tabWidth: 2,
|
|
},
|
|
},
|
|
],
|
|
}; |