From 0066840369b6e0db5b12cc6f33e46888772ed806 Mon Sep 17 00:00:00 2001 From: Samuel Martins Date: Thu, 29 Oct 2020 07:49:51 -0300 Subject: [PATCH] ci: fix lint command --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f184c9c..5ae7633 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,7 @@ "scripts": { "build": "tsc", "format": "prettier --write \"**/*.ts\"", - "lint": "eslint '{lib,commands,actions}/**/*.ts' --fix", + "lint": "eslint 'src/**/*.ts' --fix", "start": "node dist/bin/fun.js", "prepublish:next": "npm run build", "publish:next": "npm publish --access public --tag next",