@k03mad/oxlint-config 0.0.6 → 0.0.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/.husky/pre-commit CHANGED
@@ -1 +1 @@
1
- ./node_modules/.bin/run-p -c lint test
1
+ npm run lint
package/.oxlintrc.json CHANGED
@@ -112,19 +112,23 @@
112
112
 
113
113
  // OFF
114
114
 
115
- "oxc/no-optional-chaining": "off",
116
- "oxc/no-async-await": "off",
117
- "oxc/no-rest-spread-properties": "off",
118
-
115
+ "import/group-exports": "off",
119
116
  "import/no-anonymous-default-export": "off",
120
117
  "import/no-default-export": "off",
118
+ "import/no-named-as-default": "off",
121
119
  "import/no-named-export": "off",
122
120
  "import/prefer-default-export": "off",
123
- "import/group-exports": "off",
124
121
 
125
122
  "jsdoc/require-param-description": "off",
126
123
  "jsdoc/require-returns-description": "off",
127
124
 
125
+ "node/no-process-env": "off",
126
+
127
+ "oxc/no-async-await": "off",
128
+ "oxc/no-optional-chaining": "off",
129
+ "oxc/no-rest-spread-properties": "off",
130
+
131
+ "unicorn/no-array-for-each": "off",
128
132
  "unicorn/no-array-reduce": "off",
129
133
  "unicorn/no-null": "off",
130
134
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@k03mad/oxlint-config",
3
- "version": "0.0.6",
3
+ "version": "0.0.8",
4
4
  "description": "My Oxlint config",
5
5
  "license": "MIT",
6
6
  "maintainers": [
@@ -15,6 +15,7 @@
15
15
  "prepare": "husky || true"
16
16
  },
17
17
  "devDependencies": {
18
+ "husky": "9.1.7",
18
19
  "oxfmt": "0.34.0",
19
20
  "oxlint": "1.49.0"
20
21
  },