@ver0/oxlint-config 2.0.1 → 2.0.2

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.
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Browser globals that shadow common identifiers and cause confusing bugs
3
+ * when referenced without qualification (`window.` prefix).
4
+ */
5
+ declare const confusingBrowserGlobals: string[];
6
+
7
+ export default confusingBrowserGlobals;
@@ -0,0 +1,5 @@
1
+ import type {OxlintConfig} from 'oxlint';
2
+
3
+ declare const browser: OxlintConfig;
4
+
5
+ export default browser;
@@ -0,0 +1,5 @@
1
+ import type {OxlintConfig} from 'oxlint';
2
+
3
+ declare const javascript: OxlintConfig;
4
+
5
+ export default javascript;
@@ -0,0 +1,5 @@
1
+ import type {OxlintConfig} from 'oxlint';
2
+
3
+ declare const node: OxlintConfig;
4
+
5
+ export default node;
@@ -0,0 +1,5 @@
1
+ import type {OxlintConfig} from 'oxlint';
2
+
3
+ declare const react: OxlintConfig;
4
+
5
+ export default react;
@@ -0,0 +1,10 @@
1
+ import type {OxlintConfig} from 'oxlint';
2
+
3
+ declare const typescript: OxlintConfig;
4
+
5
+ /**
6
+ * Disables strict type-safety rules for projects where they are too noisy.
7
+ */
8
+ export declare const typescriptUnsafe: OxlintConfig;
9
+
10
+ export default typescript;
@@ -0,0 +1,5 @@
1
+ import type {OxlintConfig} from 'oxlint';
2
+
3
+ declare const vitest: OxlintConfig;
4
+
5
+ export default vitest;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ver0/oxlint-config",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "Oxlint configs used in all ver0 projects",
5
5
  "keywords": [
6
6
  "config",
@@ -36,6 +36,7 @@
36
36
  "conventional-changelog-conventionalcommits": "^10.2.1",
37
37
  "oxlint": "^1.75.0",
38
38
  "semantic-release": "^25.0.8",
39
+ "typescript": "^7.0.2",
39
40
  "vite-plus": "^0.2.5",
40
41
  "vitest": "^4.1.10"
41
42
  },
@@ -47,5 +48,5 @@
47
48
  "optional": true
48
49
  }
49
50
  },
50
- "packageManager": "yarn@4.12.0"
51
+ "packageManager": "yarn@4.17.1"
51
52
  }