@trigen/oxlint-config 9.0.0 → 9.0.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@trigen/oxlint-config",
3
3
  "type": "module",
4
- "version": "9.0.0",
4
+ "version": "9.0.1",
5
5
  "description": "Trigen's Oxlint config.",
6
6
  "author": "dangreen",
7
7
  "license": "MIT",
@@ -0,0 +1,3 @@
1
+ declare const config: {}
2
+
3
+ export default config
@@ -0,0 +1,3 @@
1
+ declare const config: {}
2
+
3
+ export default config
package/src/index.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ declare const config: {}
2
+
3
+ export default config
@@ -0,0 +1,3 @@
1
+ declare const config: {}
2
+
3
+ export default config
package/src/react.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ declare const config: {}
2
+
3
+ export default config
@@ -0,0 +1,3 @@
1
+ declare const config: {}
2
+
3
+ export default config
package/src/test.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ declare const config: {}
2
+
3
+ export default config
@@ -0,0 +1,3 @@
1
+ declare const config: {}
2
+
3
+ export default config
@@ -0,0 +1,3 @@
1
+ declare const config: {}
2
+
3
+ export default config
package/oxlint.config.ts DELETED
@@ -1,15 +0,0 @@
1
- import moduleConfig from '@trigen/oxlint-config/module'
2
- import rootConfig from '../../oxlint.config.ts'
3
-
4
- export default {
5
- ...rootConfig,
6
- extends: [
7
- rootConfig,
8
- moduleConfig
9
- ],
10
- rules: {
11
- 'eslint/no-magic-numbers': 'off',
12
- 'import/no-default-export': 'off',
13
- 'import/no-anonymous-default-export': 'off'
14
- }
15
- }