mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-24 19:39:11 +00:00
17 lines
309 B
JavaScript
17 lines
309 B
JavaScript
module.exports = {
|
|
printWidth: 90,
|
|
useTabs: false,
|
|
tabWidth: 4,
|
|
singleQuote: true,
|
|
trailingComma: 'es5',
|
|
bracketSpacing: true,
|
|
semi: true,
|
|
overrides: [
|
|
{
|
|
files: '*.md',
|
|
options: {
|
|
tabWidth: 2,
|
|
},
|
|
},
|
|
],
|
|
};
|