mirror of
https://github.com/ilammy/msvc-dev-cmd.git
synced 2026-09-06 21:57:19 +08:00
3fdf9b2e34
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.
18 lines
303 B
JSON
18 lines
303 B
JSON
{
|
|
"env": {
|
|
"commonjs": true,
|
|
"es6": true,
|
|
"node": true
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"globals": {
|
|
"Atomics": "readonly",
|
|
"SharedArrayBuffer": "readonly"
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2018
|
|
},
|
|
"rules": {
|
|
}
|
|
}
|