mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2024-11-06 05:45:47 -05:00
11 lines
181 B
JavaScript
11 lines
181 B
JavaScript
|
module.exports = {
|
||
|
printWidth: 80,
|
||
|
tabWidth: 2,
|
||
|
useTabs: false,
|
||
|
semi: true,
|
||
|
singleQuote: true,
|
||
|
trailingComma: 'none',
|
||
|
bracketSpacing: false,
|
||
|
arrowParens: 'avoid'
|
||
|
};
|