@storm-software/eslint 0.42.0 → 0.42.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.mjs +12 -3
- 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.mjs
CHANGED
|
@@ -12926,7 +12926,6 @@ const formatConfig = (name, config = []) => {
|
|
|
12926
12926
|
function getStormConfig(options = {
|
|
12927
12927
|
rules: {},
|
|
12928
12928
|
ignores: [],
|
|
12929
|
-
tsconfig: "./tsconfig.base.json",
|
|
12930
12929
|
markdown: {},
|
|
12931
12930
|
react: {}
|
|
12932
12931
|
}, ...userConfigs) {
|
|
@@ -13015,9 +13014,9 @@ function getStormConfig(options = {
|
|
|
13015
13014
|
])
|
|
13016
13015
|
)
|
|
13017
13016
|
),
|
|
13018
|
-
"Storm":
|
|
13017
|
+
"Storm": "readonly"
|
|
13019
13018
|
},
|
|
13020
|
-
|
|
13019
|
+
ecmaVersion: "latest"
|
|
13021
13020
|
},
|
|
13022
13021
|
rules: {
|
|
13023
13022
|
// https://eslint.org/docs/latest/rules/
|
|
@@ -13053,6 +13052,16 @@ function getStormConfig(options = {
|
|
|
13053
13052
|
...config$4,
|
|
13054
13053
|
...options.react
|
|
13055
13054
|
};
|
|
13055
|
+
typescriptConfig.languageOptions = {
|
|
13056
|
+
...typescriptConfig.languageOptions,
|
|
13057
|
+
parserOptions: {
|
|
13058
|
+
...typescriptConfig.languageOptions?.parserOptions,
|
|
13059
|
+
ecmaFeatures: {
|
|
13060
|
+
...typescriptConfig.languageOptions?.parserOptions?.ecmaFeatures,
|
|
13061
|
+
jsx: true
|
|
13062
|
+
}
|
|
13063
|
+
}
|
|
13064
|
+
};
|
|
13056
13065
|
}
|
|
13057
13066
|
configs.push(typescriptConfig);
|
|
13058
13067
|
if (options.markdown) {
|
package/package.json
CHANGED