Skip to content

Commit

Permalink
Update ignore pattern in eslint config
Browse files Browse the repository at this point in the history
The 'ignores' pattern of eslint configuration file has been reordered for enhanced readability. No change in functionality or behavior, only cosmetic changes to improve code organization.
  • Loading branch information
AhmedElywa committed May 30, 2024
1 parent 781d6ad commit c5c0661
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ const ts = require('typescript-eslint');
const jest = require('eslint-plugin-jest');

module.exports = ts.config(
{ ignores: ['**/node_modules/**', '**/dist/**', '**/coverage/**', '**/examples/**', '.vscode/**', '.github/**'] },
{
ignores: ['**/node_modules/**', '**/dist/**', '**/coverage/**', '**/examples/**', '.vscode/**', '.github/**'],
files: ['**/*.ts', '**/*.tsx'],
extends: [eslint.configs.recommended, ...ts.configs.strict, ...ts.configs.stylistic],
rules: {
Expand Down

0 comments on commit c5c0661

Please sign in to comment.