diff options
author | zaverden <zaverden@yandex-team.com> | 2023-06-22 12:19:58 +0300 |
---|---|---|
committer | zaverden <zaverden@yandex-team.com> | 2023-06-22 12:19:58 +0300 |
commit | 1b05fbaa2cdc845a2c2c7c602f91294a01544834 (patch) | |
tree | 7ed3dbabd74dc4921b1636ef5d00313f04f31ee3 | |
parent | 94c5063a1ccbeca127882728abbdc95b03a4c320 (diff) | |
download | ydb-1b05fbaa2cdc845a2c2c7c602f91294a01544834.tar.gz |
feat(eslint): add js files to linting
-rw-r--r-- | build/conf/ts/ts.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/conf/ts/ts.conf b/build/conf/ts/ts.conf index 27214f9d2c..c7770c9097 100644 --- a/build/conf/ts/ts.conf +++ b/build/conf/ts/ts.conf @@ -38,7 +38,7 @@ _TS_LINT_SRCS_VALUE= ### ### This macro executes macros which should be invoked after all user specified macros in the ya.make file macro _TS_CONFIG_EPILOGUE() { - _GLOB(_TS_LINT_SRCS_VALUE ${CURDIR}/**/*.(ts|tsx) EXCLUDE **/node_modules/**/*.(ts|tsx)) + _GLOB(_TS_LINT_SRCS_VALUE ${CURDIR}/**/*.(ts|tsx|js|jsx) EXCLUDE node_modules/**/* build/**/* bundle/**/*) _SETUP_EXTRACT_NODE_MODULES_RECIPE(${MODDIR}) } |