mirror of
https://github.com/actions/setup-python.git
synced 2024-11-10 05:41:06 +07:00
21 lines
383 B
JavaScript
21 lines
383 B
JavaScript
module.exports = {
|
|
"parser": "@typescript-eslint/parser",
|
|
"extends": [
|
|
"xo-space/esnext",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"prettier",
|
|
"prettier/@typescript-eslint"
|
|
],
|
|
"plugins": [
|
|
"@typescript-eslint",
|
|
"prettier"
|
|
],
|
|
"rules": {
|
|
"prettier/prettier": "error"
|
|
},
|
|
"env": {
|
|
"jest": true,
|
|
"node": true,
|
|
}
|
|
}
|