From 060a34edeb164ef244ff1ef9462ed0c8b441895e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Ovejero?= Date: Tue, 19 Jul 2022 16:06:35 +0200 Subject: [PATCH] :shirt: Disable casing rules --- .eslintrc.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.eslintrc.js b/.eslintrc.js index d8e3fb5..7c6a8d7 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -33,6 +33,9 @@ module.exports = { rules: { 'n8n-nodes-base/cred-class-field-documentation-url-missing': 'off', 'n8n-nodes-base/cred-class-field-documentation-url-miscased': 'off', + + 'n8n-nodes-base/cred-filename-against-convention': 'off', + 'n8n-nodes-base/cred-class-field-name-uppercase-first-char': 'off', }, }, { @@ -45,6 +48,11 @@ module.exports = { 'n8n-nodes-base/node-param-fixed-collection-type-unsorted-items': 'off', 'n8n-nodes-base/node-execute-block-operation-missing-singular-pairing': 'off', 'n8n-nodes-base/node-execute-block-operation-missing-plural-pairing': 'off', + + 'n8n-nodes-base/node-dirname-against-convention': 'off', + 'n8n-nodes-base/node-filename-against-convention': 'off', + 'n8n-nodes-base/node-param-operation-option-action-miscased': 'off', + 'n8n-nodes-base/node-param-display-name-miscased': 'off', }, }, ],