@dineroregnskab/eslint-plugin-custom-rules 2.0.3 → 2.0.4

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 CHANGED
@@ -1,4 +1,4 @@
1
- # Dinero custom ESLint rules
1
+ # Dinero Custom ESLint Rules
2
2
 
3
3
  Custom extended rules for various Dinero specific standards & conventions.
4
4
 
@@ -15,11 +15,11 @@ npm install @dineroregnskab/eslint-plugin-eslint-custom-rules@latest --save-dev
15
15
 
16
16
  Add the rule here:
17
17
 
18
- `dinero-web-2.0/Dinero.Packages/Dinero.eslintCustomRules/rules`
18
+ `dinero-web-2.0/Dinero.Packages/Dinero.EslintCustomRules/rules`
19
19
 
20
20
  You can test the rule by adding some code to test it on here.
21
21
 
22
- `dinero-web-2.0/Dinero.Packages/Dinero.eslintCustomRules/example`
22
+ `dinero-web-2.0/Dinero.Packages/Dinero.EslintCustomRules/example`
23
23
 
24
24
  And run:
25
25
 
@@ -1,11 +1,11 @@
1
1
  const returnReducerRule = require('./rules/reducers-should-always-return');
2
2
  const camelCaseRule = require('./rules/camel-case-attributes');
3
3
 
4
- const customRulesplugin = {
4
+ const customRulesPlugin = {
5
5
  rules: {
6
6
  'reducers-should-always-return': returnReducerRule,
7
7
  'attr-camel-case-rule': camelCaseRule,
8
8
  },
9
9
  };
10
10
 
11
- module.exports = customRulesplugin;
11
+ module.exports = customRulesPlugin;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dineroregnskab/eslint-plugin-custom-rules",
3
- "version": "2.0.3",
4
- "description": "ESLint plugin with custom rules for Dineroregnskab",
3
+ "version": "2.0.4",
4
+ "description": "ESLint plugin with custom rules for Dinero Regnskab",
5
5
  "main": "eslint-plugin-custom-rules.js",
6
6
  "scripts": {
7
7
  "test": ""