@storm-software/eslint 0.64.0 → 0.64.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 +2 -2
- 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
|
@@ -1693,7 +1693,7 @@ const config$1 = {
|
|
|
1693
1693
|
"id-match": "off",
|
|
1694
1694
|
// Enforce the location of arrow function bodies with implicit returns
|
|
1695
1695
|
// https://eslint.org/docs/rules/implicit-arrow-linebreak
|
|
1696
|
-
"implicit-arrow-linebreak":
|
|
1696
|
+
"implicit-arrow-linebreak": "off",
|
|
1697
1697
|
// this option sets a specific tab width for your code
|
|
1698
1698
|
// https://eslint.org/docs/rules/indent
|
|
1699
1699
|
indent: [
|
|
@@ -2027,7 +2027,7 @@ const config$1 = {
|
|
|
2027
2027
|
"operator-assignment": ["error", "always"],
|
|
2028
2028
|
// Requires operator at the beginning of the line in multiline statements
|
|
2029
2029
|
// https://eslint.org/docs/rules/operator-linebreak
|
|
2030
|
-
"operator-linebreak": ["error", "
|
|
2030
|
+
"operator-linebreak": ["error", "after", { overrides: { "=": "none" } }],
|
|
2031
2031
|
// disallow padding within blocks
|
|
2032
2032
|
"padded-blocks": [
|
|
2033
2033
|
"error",
|
package/package.json
CHANGED