2.1.4 • Published 9 months ago

@dineroregnskab/eslint-plugin-custom-rules v2.1.4

Weekly downloads
-
License
ISC
Repository
-
Last release
9 months ago

Dinero Custom ESLint Rules

Custom extended rules for various Dinero specific standards & conventions.

Installation

Bundled with dinero.Frontend & dinero.Admin package.json, so a general npm install will include it as default.

Explicit install:

npm install @dineroregnskab/eslint-plugin-eslint-custom-rules@latest --save-dev

Development

Run npm i in root and in /example.

Adding rules

  • Add the rule here: dinero-web-2.0/Dinero.Packages/Dinero.EslintCustomRules/rules

  • Add the new js rule to this file eslint-plugin-custom-rules.js.

  • You can test the rule by adding some HTML code to test it on here dinero-web-2.0/Dinero.Packages/Dinero.EslintCustomRules/example

  • After adding the rule you can restart the ESLint server in vs code by pressing F1 -> ESLint: Restart ESLint Server.

Add html rules in test.html and run test with

npm run testhtml

Add ts rules in test.ts and run test with

npm run testts

Debugging what the eslint sees

Add a rule, and log it with console log, to see in terminal what is going on. Then run npm run testhtml npm script to see it in terminal.

module.exports = {
    meta: {
        type: "suggestion",
        docs: {
            description:
                "Enforce using `danishCurrency` pipe instead of `currency` pipe in Angular HTML templates.",
        },
        fixable: "code",
        schema: [],
    },

    create(context) {
        return {
            // Target the entire file and traverse each node
            Program(node) {
                console.log("Parsed Node Types:", node);
            },
        };
    },
};

Publish & install new rule locally

  1. Log in to npm using npm login
  2. run:
# {version_type}: The type of version increment (patch, minor, major)
npm version {version_type} && npm publish
  • In dinero.Frontend and/or dinero.Admin, update the root package.json file with the newly published version number.
  • Locate the eslintrc file and add the new rule in the rules property (under "files": ["*.html"], "files": ["*.ts"] etc. respectively).

Note: The reference here must be in the format of the package name without "eslint-plugin" + rule name

Example:

"@dineroregnskab/custom-rules/reducers-should-always-return": ["warn"]

  • Run
npm i

Note: You need to restart ESLint to apply new rules. Restart the ESLint server in vs code by pressing F1 -> ESLint: Restart ESLint Server or F1 -> reload window

See ESLint custom rule tutorial for more.

Useful tool for working with AST tree: AST Explorer

License

MIT

2.1.2

9 months ago

2.1.1

9 months ago

2.1.4

9 months ago

2.1.3

9 months ago

2.1.0

9 months ago

2.0.7

1 year ago

2.0.6

1 year ago

2.0.5

2 years ago

2.0.4

2 years ago

2.0.3

2 years ago

2.0.2

2 years ago

2.0.1

2 years ago

2.0.0

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago