@storm-software/eslint 0.71.5 → 0.72.0
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 +8 -10
- 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
|
@@ -1620,10 +1620,7 @@ const config$1 = {
|
|
|
1620
1620
|
}
|
|
1621
1621
|
],
|
|
1622
1622
|
// require trailing commas in multiline object literals
|
|
1623
|
-
"comma-dangle": [
|
|
1624
|
-
"error",
|
|
1625
|
-
"never"
|
|
1626
|
-
],
|
|
1623
|
+
"comma-dangle": ["error", "never"],
|
|
1627
1624
|
// enforce spacing before and after comma
|
|
1628
1625
|
"comma-spacing": ["error", { before: false, after: true }],
|
|
1629
1626
|
// enforce one true comma style
|
|
@@ -1874,7 +1871,7 @@ const config$1 = {
|
|
|
1874
1871
|
"no-array-constructor": "error",
|
|
1875
1872
|
// disallow use of bitwise operators
|
|
1876
1873
|
// https://eslint.org/docs/rules/no-bitwise
|
|
1877
|
-
"no-bitwise": "
|
|
1874
|
+
"no-bitwise": "off",
|
|
1878
1875
|
// disallow use of the continue statement
|
|
1879
1876
|
// https://eslint.org/docs/rules/no-continue
|
|
1880
1877
|
"no-continue": "error",
|
|
@@ -1961,7 +1958,7 @@ const config$1 = {
|
|
|
1961
1958
|
// disallow dangling underscores in identifiers
|
|
1962
1959
|
// https://eslint.org/docs/rules/no-underscore-dangle
|
|
1963
1960
|
"no-underscore-dangle": [
|
|
1964
|
-
"
|
|
1961
|
+
"off",
|
|
1965
1962
|
{
|
|
1966
1963
|
allow: [],
|
|
1967
1964
|
allowAfterThis: false,
|
|
@@ -1987,18 +1984,18 @@ const config$1 = {
|
|
|
1987
1984
|
"error",
|
|
1988
1985
|
{
|
|
1989
1986
|
ObjectExpression: {
|
|
1990
|
-
minProperties:
|
|
1987
|
+
minProperties: 5,
|
|
1991
1988
|
multiline: true,
|
|
1992
1989
|
consistent: true
|
|
1993
1990
|
},
|
|
1994
|
-
ObjectPattern: { minProperties:
|
|
1991
|
+
ObjectPattern: { minProperties: 5, multiline: true, consistent: true },
|
|
1995
1992
|
ImportDeclaration: {
|
|
1996
|
-
minProperties:
|
|
1993
|
+
minProperties: 5,
|
|
1997
1994
|
multiline: true,
|
|
1998
1995
|
consistent: true
|
|
1999
1996
|
},
|
|
2000
1997
|
ExportDeclaration: {
|
|
2001
|
-
minProperties:
|
|
1998
|
+
minProperties: 5,
|
|
2002
1999
|
multiline: true,
|
|
2003
2000
|
consistent: true
|
|
2004
2001
|
}
|
|
@@ -2189,6 +2186,7 @@ const config$1 = {
|
|
|
2189
2186
|
"unicorn/import-style": "off",
|
|
2190
2187
|
"unicorn/prefer-module": "off",
|
|
2191
2188
|
"unicorn/consistent-function-scoping": "off",
|
|
2189
|
+
"unicorn/no-nested-ternary": "off",
|
|
2192
2190
|
/*************************************************************
|
|
2193
2191
|
*
|
|
2194
2192
|
* Nx Rules - The following rules are specific to the Nx plugin
|
package/package.json
CHANGED