mirror of
https://github.com/actions/create-release.git
synced 2025-06-14 12:57:43 +00:00
25 lines
325 B
Plaintext
25 lines
325 B
Plaintext
{
|
|
"extends": [
|
|
"airbnb",
|
|
"prettier"
|
|
],
|
|
"env": {
|
|
"es6": true,
|
|
"node": true,
|
|
"jest": true
|
|
},
|
|
"rules": {
|
|
"prettier/prettier": [
|
|
"error",
|
|
{
|
|
"trailingComma": "none",
|
|
"singleQuote": true,
|
|
"printWidth": 120
|
|
}
|
|
]
|
|
},
|
|
"plugins": [
|
|
"prettier"
|
|
]
|
|
}
|