Initial action stub

Now that I know how to write some simple action, let's make a stub
more complete. For example, I already know what inputs I would like
to handle for this action.
This commit is contained in:
ilammy
2019-10-01 22:13:57 +03:00
commit 3fdf9b2e34
9 changed files with 1161 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"env": {
"commonjs": true,
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
}
}