@storm-software/eslint 0.144.0 → 0.144.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/README.md +1 -1
- package/dist/preset.js +3 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
package/dist/preset.js
CHANGED
|
@@ -2155,13 +2155,12 @@ async function jsonc(options = {}) {
|
|
|
2155
2155
|
__name(jsonc, "jsonc");
|
|
2156
2156
|
|
|
2157
2157
|
// src/configs/jsx.ts
|
|
2158
|
-
import { ensurePackages as ensurePackages2, interopDefault as interopDefault2 } from "src/utils/helpers";
|
|
2159
2158
|
async function jsx() {
|
|
2160
|
-
await
|
|
2159
|
+
await ensurePackages([
|
|
2161
2160
|
"eslint-plugin-jsx-a11y"
|
|
2162
2161
|
]);
|
|
2163
2162
|
const [pluginJsxA11y] = await Promise.all([
|
|
2164
|
-
|
|
2163
|
+
interopDefault(import("eslint-plugin-jsx-a11y"))
|
|
2165
2164
|
]);
|
|
2166
2165
|
return [
|
|
2167
2166
|
{
|
|
@@ -2182,7 +2181,7 @@ async function jsx() {
|
|
|
2182
2181
|
},
|
|
2183
2182
|
rules: {
|
|
2184
2183
|
"jsx-a11y/alt-text": "error",
|
|
2185
|
-
"jsx-a11y/anchor-ambiguous-text": "
|
|
2184
|
+
"jsx-a11y/anchor-ambiguous-text": "error",
|
|
2186
2185
|
"jsx-a11y/anchor-has-content": "error",
|
|
2187
2186
|
"jsx-a11y/anchor-is-valid": "error",
|
|
2188
2187
|
"jsx-a11y/aria-activedescendant-has-tabindex": "error",
|
package/package.json
CHANGED