chore: cloudcmd: actions: lint ☘️

This commit is contained in:
coderaiser 2026-02-15 20:25:32 +00:00
parent d274a2b3db
commit e969b3c2b3
4 changed files with 34 additions and 42 deletions

24
.gitignore vendored
View file

@ -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

View file

@ -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.*

View file

@ -1,11 +1,11 @@
{
"plugins": ["cloudcmd"],
"ignore": [
"html",
"fixture*",
"*.md",
"app.json",
"fontello.json",
"*.md"
"html",
"fixture*"
],
"rules": {
"package-json/add-type": "off",

View file

@ -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);