refactor: Add lint rule node-class-description-name-miscased (no-changelog) (#5065)

* 📦 Update `eslint-plugin-n8n-nodes-base` version

* 📦 Update `pnpm-lock`

* 👕 Enable rule

* 👕 Exempt pre-existing nodes with miscased names
This commit is contained in:
Iván Ovejero
2023-01-02 09:22:33 +01:00
committed by GitHub
parent 99e3eb634b
commit 7e3f3c5097
6 changed files with 9 additions and 5 deletions

View File

@@ -7,6 +7,7 @@ const pdf = require('pdf-parse');
export class ReadPDF implements INodeType {
description: INodeTypeDescription = {
displayName: 'Read PDF',
// eslint-disable-next-line n8n-nodes-base/node-class-description-name-miscased
name: 'readPDF',
icon: 'fa:file-pdf',
group: ['input'],