@hyeon/linter 7.3.7 → 7.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/typescript.mjs +6 -2
package/package.json
CHANGED
package/src/typescript.mjs
CHANGED
|
@@ -2,7 +2,9 @@ import js from '@eslint/js'
|
|
|
2
2
|
import eslintConfigPrettier from 'eslint-config-prettier'
|
|
3
3
|
import tseslint from 'typescript-eslint'
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
// tseslint.config()는 이미 flat config 배열을 반환
|
|
6
|
+
|
|
7
|
+
const config = [
|
|
6
8
|
{
|
|
7
9
|
ignores: ['**/node_modules/**', '**/dist/**', '**/.turbo/**', '**/coverage/**'],
|
|
8
10
|
},
|
|
@@ -37,4 +39,6 @@ export default tseslint.config(
|
|
|
37
39
|
'@typescript-eslint/no-non-null-assertion': 'off',
|
|
38
40
|
},
|
|
39
41
|
},
|
|
40
|
-
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
export default config
|