1
0
Fork 0
mirror of https://github.com/docker/setup-buildx-action.git synced 2025-05-08 15:39:29 +02:00

chore: update dev dependencies and workflow

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax 2022-03-21 13:43:41 +01:00
parent c62171c994
commit 2e23606dc9
No known key found for this signature in database
GPG key ID: 3248E46B6BB8C7F7
21 changed files with 2134 additions and 16276 deletions

23
.eslintrc.json Normal file
View file

@ -0,0 +1,23 @@
{
"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"
]
}