@lntvow/eslint-plugin 9.3.7 → 9.3.8

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/index.cjs CHANGED
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  const _package = require('./package.json.cjs');
4
- const newlineBefore = require('./src/rules/newline-before.cjs');
4
+ const newlineBeforeDescribeTest = require('./src/rules/newline-before-describe-test.cjs');
5
5
 
6
6
  const plugin = {
7
7
  meta: {
@@ -9,7 +9,7 @@ const plugin = {
9
9
  version: _package.version
10
10
  },
11
11
  rules: {
12
- "newline-before": newlineBefore
12
+ "newline-before-describe-test": newlineBeforeDescribeTest
13
13
  }
14
14
  };
15
15
 
package/dist/index.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  import { name, version } from './package.json.mjs';
2
- import newlineBefore from './src/rules/newline-before.mjs';
2
+ import newlineBeforeDescribeTest from './src/rules/newline-before-describe-test.mjs';
3
3
 
4
4
  const plugin = {
5
5
  meta: {
@@ -7,7 +7,7 @@ const plugin = {
7
7
  version
8
8
  },
9
9
  rules: {
10
- "newline-before": newlineBefore
10
+ "newline-before-describe-test": newlineBeforeDescribeTest
11
11
  }
12
12
  };
13
13
 
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  const name = "@lntvow/eslint-plugin";
4
- const version = "9.3.7";
4
+ const version = "9.3.8";
5
5
 
6
6
  exports.name = name;
7
7
  exports.version = version;
@@ -1,4 +1,4 @@
1
1
  const name = "@lntvow/eslint-plugin";
2
- const version = "9.3.7";
2
+ const version = "9.3.8";
3
3
 
4
4
  export { name, version };
@@ -2,7 +2,7 @@
2
2
 
3
3
  const index = require('../utils/index.cjs');
4
4
 
5
- const newlineBefore = index.createEslintRule({
5
+ const newlineBeforeDescribeTest = index.createEslintRule({
6
6
  meta: {
7
7
  type: "layout",
8
8
  docs: {
@@ -11,9 +11,6 @@ const newlineBefore = index.createEslintRule({
11
11
  recommended: true,
12
12
  url: "https://eslint.org/docs/rules/newline-before"
13
13
  },
14
- messages: {
15
- newlineBefore: 'Expected newline before "{{ keyword }}"'
16
- },
17
14
  fixable: "whitespace",
18
15
  schema: []
19
16
  },
@@ -49,4 +46,4 @@ const newlineBefore = index.createEslintRule({
49
46
  }
50
47
  });
51
48
 
52
- module.exports = newlineBefore;
49
+ module.exports = newlineBeforeDescribeTest;
@@ -1,6 +1,6 @@
1
1
  import { createEslintRule } from '../utils/index.mjs';
2
2
 
3
- const newlineBefore = createEslintRule({
3
+ const newlineBeforeDescribeTest = createEslintRule({
4
4
  meta: {
5
5
  type: "layout",
6
6
  docs: {
@@ -9,9 +9,6 @@ const newlineBefore = createEslintRule({
9
9
  recommended: true,
10
10
  url: "https://eslint.org/docs/rules/newline-before"
11
11
  },
12
- messages: {
13
- newlineBefore: 'Expected newline before "{{ keyword }}"'
14
- },
15
12
  fixable: "whitespace",
16
13
  schema: []
17
14
  },
@@ -47,4 +44,4 @@ const newlineBefore = createEslintRule({
47
44
  }
48
45
  });
49
46
 
50
- export { newlineBefore as default };
47
+ export { newlineBeforeDescribeTest as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lntvow/eslint-plugin",
3
- "version": "9.3.7",
3
+ "version": "9.3.8",
4
4
  "description": "eslint-plugin",
5
5
  "type": "module",
6
6
  "author": "lntvow",