Fix eslint not validating eslint rules correctly (#3423)

This commit is contained in:
Timothee Guerin 2024-05-23 17:19:50 -07:00 коммит произвёл GitHub
Родитель 0a70aa7f61
Коммит 0056b40751
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -65,6 +65,7 @@ const allFilesConfig = tsEslint.config({
export function getTypeScriptProjectRules(root) {
return tsEslint.config({
files: ["**/*.ts", "**/*.tsx"],
ignores: ["packages/http-client-csharp/**/*"], // Ignore isolated modules
plugins: {
deprecation,
},

Просмотреть файл

@ -1,3 +1,5 @@
{
"extends": "./tsconfig.base.json"
"extends": "./tsconfig.base.json",
"include": ["**/*.ts", "**/*.tsx"],
"exclude": ["**/node_modules/", "**/dist/", "**/build/", "**/coverage/"]
}