Przeglądaj źródła

Directory created by Mgit on CI must be ignored as well.

Kamil Piechaczek 7 lat temu
rodzic
commit
7dd890df20
1 zmienionych plików z 4 dodań i 3 usunięć
  1. 4 3
      packages/ckeditor5-build-balloon/package.json

+ 4 - 3
packages/ckeditor5-build-balloon/package.json

@@ -70,8 +70,8 @@
   },
   "scripts": {
     "build": "webpack --mode production",
-  "lint": "eslint --quiet '**/*.js'",
-  "precommit": "lint-staged",
+    "lint": "eslint --quiet '**/*.js'",
+    "precommit": "lint-staged",
     "preversion": "npm run build; if [ -n \"$(git status src/ckeditor.js build/ --porcelain)\" ]; then git add -u src/ckeditor.js build/ && git commit -m 'Internal: Build.'; fi"
   },
   "lint-staged": {
@@ -80,6 +80,7 @@
     ]
   },
   "eslintIgnore": [
-    "build/**"
+    "build/**",
+    "packages/**"
   ]
 }