@saasmakers/eslint 0.1.52 → 0.1.53
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/dist/eslint.config.cjs +2 -4
- package/dist/index.cjs +1 -3
- package/package.json +1 -1
package/dist/eslint.config.cjs
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
-
|
|
5
3
|
const pluginJs = require('@eslint/js');
|
|
6
4
|
const nuxt = require('@nuxt/eslint-plugin');
|
|
7
5
|
const stylistic = require('@stylistic/eslint-plugin');
|
|
@@ -22621,7 +22619,7 @@ const config = [
|
|
|
22621
22619
|
// SaaS Makers
|
|
22622
22620
|
{
|
|
22623
22621
|
plugins: {
|
|
22624
|
-
saasmakers: index
|
|
22622
|
+
saasmakers: index
|
|
22625
22623
|
},
|
|
22626
22624
|
rules: {
|
|
22627
22625
|
"saasmakers/ts-multiline-ternary": "error",
|
|
@@ -22685,4 +22683,4 @@ const config = [
|
|
|
22685
22683
|
}
|
|
22686
22684
|
];
|
|
22687
22685
|
|
|
22688
|
-
exports
|
|
22686
|
+
module.exports = config;
|
package/dist/index.cjs
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
-
|
|
5
3
|
const utils = require('@typescript-eslint/utils');
|
|
6
4
|
|
|
7
5
|
const rule$b = {
|
|
@@ -886,4 +884,4 @@ const saasmakers = {
|
|
|
886
884
|
}
|
|
887
885
|
};
|
|
888
886
|
|
|
889
|
-
exports
|
|
887
|
+
module.exports = saasmakers;
|