Skip to content

Commit cb29476

Browse files
committed
wip
1 parent c86bdb6 commit cb29476

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

eslint.config.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,14 @@ import { FlatESLint } from '@typescript-eslint/utils/ts-eslint';
99
/** @type {Linter.Config} */
1010
const config = [
1111
{
12-
files: [ 'src/*.js', 'src/**/*.js', 'src/**/*.ts', 'src/*.ts' ],
12+
files: [
13+
'src/*.js',
14+
'src/**/*.js',
15+
'src/**/*.ts',
16+
'src/*.ts',
17+
'tests/**/*.ts',
18+
'tests/*.ts'
19+
],
1320
ignores: [ 'node_modules', 'dist' ],
1421
languageOptions: {
1522
ecmaVersion: 2022,

tests/example.test.ts

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
/* eslint-disable no-undef */
2-
31
import { add } from '@/index';
42

53
test('two plus two is four', () => {

0 commit comments

Comments
 (0)