mirror of
https://github.com/hoverkraft-tech/compose-action.git
synced 2026-01-11 15:13:06 +08:00
* chore: use eslint and prettier * chore: add ci test for eslint and prettier * remove node_modules * add missing npm install
18 lines
276 B
Plaintext
18 lines
276 B
Plaintext
{
|
|
"env": {
|
|
"commonjs": true,
|
|
"es6": true,
|
|
"jest": true,
|
|
"node": true
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"globals": {
|
|
"Atomics": "readonly",
|
|
"SharedArrayBuffer": "readonly"
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2018
|
|
},
|
|
"rules": {}
|
|
}
|