From 62a07fa5b7911cadb71c1cb0dcfc2c1ca699e9ba Mon Sep 17 00:00:00 2001 From: Kuba Orlik Date: Tue, 2 Apr 2024 16:18:02 +0200 Subject: [PATCH] Include tsx files in linting rules --- .arclint | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.arclint b/.arclint index fd0796a..109dd39 100644 --- a/.arclint +++ b/.arclint @@ -3,11 +3,11 @@ "prettier": { "type": "prettier", "bin": "./node_modules/.bin/prettier", - "include": ["(\\.[tj]s$)", "(\\.s?css$)"] + "include": ["(\\.[tj]sx?$)", "(\\.s?css$)"] }, "eslint": { "type": "eslint", - "include": ["(src/.*\\.ts$)", "(src/.*\\.js$)"] + "include": ["(src/.*\\.tsx?$)", "(src/.*\\.js$)"] } } }