mirror of
https://github.com/docker/build-push-action.git
synced 2024-11-06 00:35:53 -05:00
24 lines
434 B
JSON
24 lines
434 B
JSON
|
{
|
||
|
"env": {
|
||
|
"node": true,
|
||
|
"es2021": true,
|
||
|
"jest/globals": true
|
||
|
},
|
||
|
"extends": [
|
||
|
"eslint:recommended",
|
||
|
"plugin:@typescript-eslint/recommended",
|
||
|
"plugin:jest/recommended",
|
||
|
"plugin:prettier/recommended"
|
||
|
],
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"parserOptions": {
|
||
|
"ecmaVersion": "latest",
|
||
|
"sourceType": "module"
|
||
|
},
|
||
|
"plugins": [
|
||
|
"@typescript-eslint",
|
||
|
"jest",
|
||
|
"prettier"
|
||
|
]
|
||
|
}
|