mirror of
https://github.com/docker/build-push-action.git
synced 2024-11-06 00:35:53 -05:00
79117b6ea5
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
24 lines
471 B
JSON
24 lines
471 B
JSON
{
|
|
"env": {
|
|
"node": true,
|
|
"es6": true,
|
|
"jest": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:jest/recommended",
|
|
"plugin:prettier/recommended"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": 2023,
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": [
|
|
"@typescript-eslint",
|
|
"jest",
|
|
"prettier"
|
|
]
|
|
}
|