mirror of
https://code.forgejo.org/actions/setup-go.git
synced 2026-08-29 05:24:58 -04:00
Turn on ESLint and update Prettier
This commit is contained in:
parent
a3d889c34c
commit
51a092af10
24 changed files with 2338 additions and 226 deletions
11
.prettierrc.js
Normal file
11
.prettierrc.js
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
// This is a reusable configuration file copied from https://github.com/actions/reusable-workflows/tree/main/reusable-configurations. Please don't make changes to this file as it's the subject of an automatic update.
|
||||
module.exports = {
|
||||
printWidth: 80,
|
||||
tabWidth: 2,
|
||||
useTabs: false,
|
||||
semi: true,
|
||||
singleQuote: true,
|
||||
trailingComma: 'none',
|
||||
bracketSpacing: false,
|
||||
arrowParens: 'avoid'
|
||||
};
|
||||
Loading…
Reference in a new issue