Skip to content

Commit b4c6609

Browse files
authored
fix(eslint): ignore filename and includes package.json (#3)
1 parent 2133420 commit b4c6609

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.eslintrc.js

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ module.exports = {
4646
'n8n-nodes-base/node-execute-block-missing-continue-on-fail': 'off',
4747
'n8n-nodes-base/node-resource-description-filename-against-convention':
4848
'off',
49+
'n8n-nodes-base/node-filename-against-convention': 'off',
4950
'n8n-nodes-base/node-param-fixed-collection-type-unsorted-items': 'off',
5051
'n8n-nodes-base/node-execute-block-operation-missing-singular-pairing':
5152
'off',

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616
"esModuleInterop": true,
1717
"useUnknownInCatchVariables": false
1818
},
19-
"include": ["**/*.ts"]
19+
"include": ["**/*.ts", "package.json"]
2020
}

0 commit comments

Comments
 (0)