Skip to content

Commit

Permalink
fix(eslint-plugin-experience): exclude not TS files from `@taiga-ui/e…
Browse files Browse the repository at this point in the history
…xperience/entry-points` config (#440)
  • Loading branch information
nsbarsukov authored Jun 21, 2024
1 parent 17489e3 commit 3ffa5fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/eslint-plugin-experience/configs/entry-points.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const packageNames = allPackageJSONs.map(path => readJSON(path).name);
module.exports = {
overrides: [
{
files: allPackageJSONs.map(path => path.replace('package.json', '**')),
files: allPackageJSONs.map(path => path.replace('package.json', '**/*.ts')),
parser: '@typescript-eslint/parser',
excludedFiles: ['**/*.spec.ts', '**/*.cy.ts'],
rules: {
Expand Down

0 comments on commit 3ffa5fc

Please sign in to comment.