Skip to content

Commit

Permalink
ref: move ts tests to root
Browse files Browse the repository at this point in the history
  • Loading branch information
obdulia-losantos committed Jan 19, 2025
1 parent 40e0a6f commit c6d882d
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 1,345 deletions.
23 changes: 23 additions & 0 deletions eslint.config-ts.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import eslintJS from '@eslint/js';
import parser from '@typescript-eslint/parser';
import globals from 'globals';
import eslintTS from 'typescript-eslint';

export default [
eslintJS.configs.recommended,
...eslintTS.configs.recommended,
eslintTS.configs.eslintRecommended,
{
files: ['**/*.ts'],
languageOptions: {
globals: {
...globals.node,
...globals.es6
},
parser
},
rules: {
'@typescript-eslint/no-unused-expressions': 'off'
}
}
];
18 changes: 0 additions & 18 deletions test-types/.eslintrc

This file was deleted.

Loading

0 comments on commit c6d882d

Please sign in to comment.