diff --git a/.changeset/gorgeous-badgers-warn.md b/.changeset/gorgeous-badgers-warn.md new file mode 100644 index 0000000..c8ff875 --- /dev/null +++ b/.changeset/gorgeous-badgers-warn.md @@ -0,0 +1,5 @@ +--- +'rankify-contracts': patch +--- + +Fixed linter errors on docs templates directory diff --git a/.eslintrc b/.eslintrc index 9b04f8f..13fb58d 100644 --- a/.eslintrc +++ b/.eslintrc @@ -1,27 +1,26 @@ { - "root": true, - "parser": "@typescript-eslint/parser", - "env": { - "es2022": true, - "browser": true, - "node": true, - "mocha": true - }, - "extends" : [ - "eslint:recommended", - "plugin:promise/recommended", - "prettier" // eslint-config-prettier - ], - "plugins": [ - "promise" - ], - "globals" : { - "artifacts": "readonly", - "contract": "readonly", - "assert": "readonly", - "web3": "readonly" - }, - "rules": { - "no-unused-vars": "off" - } - } \ No newline at end of file + "root": true, + "parser": "@typescript-eslint/parser", + "env": { + "es2022": true, + "browser": true, + "node": true, + "mocha": true + }, + "extends": [ + "eslint:recommended", + "plugin:promise/recommended", + "prettier" // eslint-config-prettier + ], + "plugins": ["promise"], + "ignorePatterns": ["docs/templates/", "node_modules/"], + "globals": { + "artifacts": "readonly", + "contract": "readonly", + "assert": "readonly", + "web3": "readonly" + }, + "rules": { + "no-unused-vars": "off" + } +}