mirror of
https://github.com/actions/setup-node.git
synced 2024-11-10 04:18:24 +08:00
962678f22c
* Add ESLinter and update Prettier * Update eslint config * Update dependencies * Rebuild action * Update package.json * Updates docs * Update docs
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'
|
|
};
|