mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-07-17 16:38:18 +00:00
chore: cloudcmd: actions: lint ☘️
This commit is contained in:
parent
d274a2b3db
commit
e969b3c2b3
4 changed files with 34 additions and 42 deletions
24
.gitignore
vendored
24
.gitignore
vendored
|
|
@ -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
|
||||
|
|
|
|||
42
.npmignore
42
.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.*
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
{
|
||||
"plugins": ["cloudcmd"],
|
||||
"ignore": [
|
||||
"html",
|
||||
"fixture*",
|
||||
"*.md",
|
||||
"app.json",
|
||||
"fontello.json",
|
||||
"*.md"
|
||||
"html",
|
||||
"fixture*"
|
||||
],
|
||||
"rules": {
|
||||
"package-json/add-type": "off",
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue