mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 02:35:49 +00:00
chore: lint
This commit is contained in:
parent
bd7dfd0c28
commit
d0e5fc0cbd
4 changed files with 26 additions and 23 deletions
2
.github/workflows/nodejs.yml
vendored
2
.github/workflows/nodejs.yml
vendored
|
|
@ -11,7 +11,7 @@ jobs:
|
|||
node-version:
|
||||
- 16.x
|
||||
- 18.x
|
||||
- 19.x
|
||||
- 20.x
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
|
|
|
|||
|
|
@ -2,6 +2,8 @@
|
|||
|
||||
'use strict';
|
||||
|
||||
const montag = require('montag');
|
||||
|
||||
const {promisify} = require('es6-promisify');
|
||||
const tryToCatch = require('try-to-catch');
|
||||
const createElement = require('@cloudcmd/create-element');
|
||||
|
|
@ -38,10 +40,11 @@ module.exports.init = async () => {
|
|||
|
||||
function create() {
|
||||
const element = createElement('div', {
|
||||
style:
|
||||
'width : 100%;' +
|
||||
'height : 100%;' +
|
||||
'font-family: "Droid Sans Mono";',
|
||||
style: montag`
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
font-family: "Droid Sans Mono";
|
||||
`,
|
||||
notAppend: true,
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -15,10 +15,10 @@ module.exports.escapeRegExp = (str) => {
|
|||
* get regexp from wild card
|
||||
*/
|
||||
module.exports.getRegExp = (wildcard) => {
|
||||
const escaped = '^' + wildcard // search from start of line
|
||||
const escaped = `^${wildcard // search from start of line
|
||||
.replace(/\./g, '\\.')
|
||||
.replace(/\*/g, '.*')
|
||||
.replace('?', '.?') + '$'; // search to end of line
|
||||
.replace('?', '.?')}$`; // search to end of line
|
||||
|
||||
return RegExp(escaped);
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
@media only screen and (min-width: 1600px) {
|
||||
@media only screen and (width >= 1600px) {
|
||||
.name {
|
||||
width: 40%;
|
||||
}
|
||||
|
|
@ -20,7 +20,7 @@
|
|||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-height: 900px) and (max-width: 600px) {
|
||||
@media only screen and (height <= 900px) and (width <= 600px) {
|
||||
.fm {
|
||||
height: 85%;
|
||||
}
|
||||
|
|
@ -30,7 +30,7 @@
|
|||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-height: 550px) and (max-width: 600px) {
|
||||
@media only screen and (height >= 550px) and (width <= 600px) {
|
||||
.fm {
|
||||
height: 80%;
|
||||
}
|
||||
|
|
@ -40,43 +40,43 @@
|
|||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-height: 750px) and (max-width: 600px) {
|
||||
@media only screen and (height <= 750px) and (width <= 600px) {
|
||||
.fm {
|
||||
height: 75%;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-height: 450px) and (max-width: 600px) {
|
||||
@media only screen and (height <= 450px) and (width <= 600px) {
|
||||
.fm {
|
||||
height: 75%;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-height: 550px) and (max-width: 600px) {
|
||||
@media only screen and (height <= 550px) and (width <= 600px) {
|
||||
.fm {
|
||||
height: 65%;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-height: 550px) and (max-width: 550px) {
|
||||
@media only screen and (height <= 550px) and (width <= 550px) {
|
||||
.fm {
|
||||
height: 70%;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-height: 850px) and (min-width: 650px) {
|
||||
@media only screen and (height >= 850px) and (width >= 650px) {
|
||||
.fm {
|
||||
height: 95%;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-height: 850px) {
|
||||
@media only screen and (height <= 850px) {
|
||||
.files {
|
||||
height: 90%;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-height: 700px) and (min-width: 600px) {
|
||||
@media only screen and (height <= 700px) and (width >= 600px) {
|
||||
.fm {
|
||||
height: 85%;
|
||||
}
|
||||
|
|
@ -86,13 +86,13 @@
|
|||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-height: 450px) {
|
||||
@media only screen and (height <= 450px) {
|
||||
.fm {
|
||||
height: 65%;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-height: 640px) and (max-width: 360px) {
|
||||
@media only screen and (height <= 640px) and (width <= 360px) {
|
||||
.fm {
|
||||
height: 75%;
|
||||
}
|
||||
|
|
@ -114,7 +114,7 @@
|
|||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 600px) {
|
||||
@media only screen and (width <= 600px) {
|
||||
.panel {
|
||||
font-size: 26px;
|
||||
}
|
||||
|
|
@ -183,19 +183,19 @@
|
|||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 601px) and (max-width: 785px) {
|
||||
@media only screen and (width >= 601px) and (width <= 785px) {
|
||||
.cmd-button {
|
||||
width: 13%;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 786px) and (max-width: 1155px) {
|
||||
@media only screen and (width >= 786px) and (width <= 1155px) {
|
||||
.cmd-button {
|
||||
width: 10%;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1155px) {
|
||||
@media only screen and (width <= 1155px) {
|
||||
.panel {
|
||||
width: 98%;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue