From e969b3c2b370f561d9f532889269076ea1794bbf Mon Sep 17 00:00:00 2001 From: coderaiser Date: Sun, 15 Feb 2026 20:25:32 +0000 Subject: [PATCH] =?UTF-8?q?chore:=20cloudcmd:=20actions:=20lint=20?= =?UTF-8?q?=E2=98=98=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 24 +++++++++++------------- .npmignore | 42 ++++++++++++++++++++---------------------- .putout.json | 6 +++--- .webpack/css.js | 4 ---- 4 files changed, 34 insertions(+), 42 deletions(-) diff --git a/.gitignore b/.gitignore index e6d5d021..6aa86aa9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,19 +1,17 @@ -package-lock.json -yarn.lock -yarn-error.log -node_modules -npm-debug.log* -coverage - -modules/execon -modules/emitify +*.swp +*.log +*.lock .nyc_output - -*.swp .DS_Store +.idea +package-lock.json +npm-debug.log* + +node_modules +coverage +modules/execon +modules/emitify dist dist-dev - -.idea diff --git a/.npmignore b/.npmignore index ceb649e8..62747573 100644 --- a/.npmignore +++ b/.npmignore @@ -1,34 +1,32 @@ -.* *.spec.* *.config.* *.fixture.js* +*.ai +*.cdr +*.eps +*.config.* +*.log +*.loc + +.* + manifest.yml -docker docker-compose.yml +yarn.lock +now.json +app.json +bower.json +manifest.yml +deno.json +bin/release.* +img/logo/cloudcmd-hq.png +webpack.config.js + +docker test fixture fixture-* coverage css html -yarn-error.log -yarn.lock -now.json - -app.json -bower.json -manifest.yml -deno.json - -bin/release.* - client -img/logo/cloudcmd-hq.png - -webpack.config.js - -*.ai -*.cdr -*.eps - -*.config.* diff --git a/.putout.json b/.putout.json index 3482fdb7..7c6ef070 100644 --- a/.putout.json +++ b/.putout.json @@ -1,11 +1,11 @@ { "plugins": ["cloudcmd"], "ignore": [ - "html", - "fixture*", + "*.md", "app.json", "fontello.json", - "*.md" + "html", + "fixture*" ], "rules": { "package-json/add-type": "off", diff --git a/.webpack/css.js b/.webpack/css.js index 56af6eca..001d0dfc 100644 --- a/.webpack/css.js +++ b/.webpack/css.js @@ -1,8 +1,4 @@ -import {env} from 'node:process'; import MiniCssExtractPlugin from 'mini-css-extract-plugin'; -import cssnano from 'cssnano'; - -const isDev = env.NODE_ENV === 'development'; const clean = (a) => a.filter(Boolean);