mirror of
https://github.com/werf/actions.git
synced 2026-02-05 02:46:23 +03:00
25 lines
629 B
JSON
25 lines
629 B
JSON
{
|
|
"plugins": ["@typescript-eslint", "github"],
|
|
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended","plugin:github/recommended"],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": 9,
|
|
"sourceType": "module",
|
|
"project": "./tsconfig.json"
|
|
},
|
|
"rules": {
|
|
"prettier/prettier": "off",
|
|
"no-console": "off",
|
|
"eslint-comments/no-use": "off",
|
|
"import/no-namespace": "off",
|
|
"no-unused-vars": "off",
|
|
"camelcase": "off",
|
|
"semi": "off",
|
|
"i18n-text/no-en": "off",
|
|
"sort-imports": "off"
|
|
},
|
|
"env": {
|
|
"node": true,
|
|
"es6": true
|
|
}
|
|
} |