eslint-config-seek 0.0.0-rulesdir-20230604235256 → 0.0.0-rulesdir-20230605005600

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/base.js CHANGED
@@ -5,7 +5,7 @@ const OFF = 0;
5
5
  const ERROR = 2;
6
6
 
7
7
  const rulesDirPlugin = require('eslint-plugin-rulesdir');
8
- rulesDirPlugin.RULES_DIR = 'rules'; // (an example folder where your rules might be stored)
8
+ rulesDirPlugin.RULES_DIR = path.join(__dirname, 'rules');
9
9
 
10
10
  const baseRules = {
11
11
  // Possible Errors
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-seek",
3
- "version": "0.0.0-rulesdir-20230604235256",
3
+ "version": "0.0.0-rulesdir-20230605005600",
4
4
  "description": "ESLint configuration used by SEEK",
5
5
  "main": "index.js",
6
6
  "files": [
package/rules/index.js DELETED
@@ -1,3 +0,0 @@
1
- module.exports = {
2
- 'unsafe-to-chain-command': require('./unsafe-to-chain-command.js'),
3
- };