mirror of
https://github.com/valitydev/build-actions.git
synced 2024-11-06 02:05:17 +00:00
12 lines
191 B
JavaScript
12 lines
191 B
JavaScript
module.exports = {
|
|
arrowParens: 'always',
|
|
bracketSpacing: true,
|
|
endOfLine: 'lf',
|
|
printWidth: 120,
|
|
semi: true,
|
|
singleQuote: true,
|
|
tabWidth: 4,
|
|
trailingComma: 'es5',
|
|
useTabs: true,
|
|
};
|