mirror of
https://github.com/actions/add-to-project.git
synced 2025-12-11 04:32:47 +00:00
27 lines
592 B
JSON
27 lines
592 B
JSON
{
|
|
"root": true,
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": ["@typescript-eslint", "github", "jest", "prettier"],
|
|
"extends": [
|
|
"plugin:github/recommended",
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"prettier"
|
|
],
|
|
"parserOptions": {
|
|
"ecmaVersion": 2019,
|
|
"sourceType": "module"
|
|
},
|
|
"env": {
|
|
"node": true,
|
|
"es6": true,
|
|
"jest/globals": true
|
|
},
|
|
"rules": {
|
|
"filenames/match-regex": "off",
|
|
"github/no-then": "off",
|
|
"i18n-text/no-en": "off",
|
|
"import/no-namespace": "off"
|
|
}
|
|
}
|