@hyeon/linter 7.0.36 → 7.0.38

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/README.md CHANGED
@@ -10,10 +10,9 @@ npm install --save-dev @hyeon/linter
10
10
  import hyeonLinter from '@hyeon/linter'
11
11
 
12
12
  export default [
13
- ...hyeonLinter.recommended,
13
+ ...hyeonLinter.typescript,
14
14
  ...hyeonLinter.react,
15
15
  ...hyeonLinter.prettier,
16
- ...hyeonLinter.typescript,
17
16
  ]
18
17
  ```
19
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hyeon/linter",
3
- "version": "7.0.36",
3
+ "version": "7.0.38",
4
4
  "description": "Hansanghyun custom eslint settings",
5
5
  "main": "./src/index.mjs",
6
6
  "scripts": {
package/src/base.mjs CHANGED
@@ -2,4 +2,7 @@ import js from '@eslint/js';
2
2
 
3
3
  export default [
4
4
  js.configs.recommended,
5
+ {
6
+ ignores: ['node_modules/', 'dist/'],
7
+ }
5
8
  ];
@@ -1,7 +1,11 @@
1
+ import js from '@eslint/js';
1
2
  import tseslint from 'typescript-eslint'
2
3
 
3
4
  export default tseslint.config(
4
- { ignores: ['dist'] },
5
+ js.configs.recommended,
6
+ {
7
+ ignores: ['node_modules/', 'dist/'],
8
+ },
5
9
  {
6
10
  extends: tseslint.configs.recommended,
7
11
  files: ['**/*.{ts,tsx}'],