Enable eslint-plugin-github in test folder

This commit is contained in:
Elena Tanasoiu
2022-11-24 19:29:39 +00:00
parent b45c67f24f
commit 56660b1720

View File

@@ -5,4 +5,25 @@ module.exports = {
parserOptions: {
project: "./test/tsconfig.json",
},
plugins: [
"github",
],
extends: [
"plugin:github/react",
"plugin:github/recommended",
"plugin:github/typescript",
],
rules: {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-shadow": "off",
"camelcase": "off",
"filenames/match-regex": "off",
"i18n-text/no-en": "off",
"import/no-namespace": "off",
"import/no-unresolved": "off",
"no-console": "off",
"no-shadow": "off",
"no-undef": "off",
"github/array-foreach": "off",
}
};