Skip to content

Commit 16e12c6

Browse files
committed
style: eslint code
1 parent 05345d9 commit 16e12c6

File tree

16 files changed

+54
-57
lines changed

16 files changed

+54
-57
lines changed

code/algorithm/interview-101/binarySearch.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
*
55
*/
6-
const search = function (nums, target) {
6+
function search(nums, target) {
77
// 投机
88
// return nums.indexOf(target)
99

code/express/apps/static-source-demo/app.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const express = require('express')
22

33
const app = express()
4-
// eslint-disable-next-line import/order
4+
55
const path = require('node:path')
66
// 服务启动端口
77
const port = 3000

code/express/apps/template-demo/app.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
const path = require('node:path')
21
const http = require('node:http')
3-
const createError = require('http-errors')
4-
const express = require('express')
2+
const path = require('node:path')
53
const cookieParser = require('cookie-parser')
4+
const express = require('express')
5+
const createError = require('http-errors')
66
const logger = require('morgan')
77
const indexRouter = require('./routes/index')
88
const usersRouter = require('./routes/users')

code/koa/koa-listen.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// eslint-disable-next-line import/order
21
const Koa = require('koa')
32

43
const app = new Koa()

docs/front-end/base-begin/javascript.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ function fn() {
315315

316316
```js
317317
// 匿名函数
318-
const fn = function () {
318+
function fn() {
319319

320320
}
321321
```

docs/read-books/cs-books/ES6标准入门.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@ function objectConstant(obj) {
544544
: this)
545545

546546
// 方法二
547-
const getGlobal = function () {
547+
function getGlobal() {
548548
if (typeof self !== 'undefined') {
549549
return self
550550
}
@@ -2315,7 +2315,7 @@ ES6 对这个属性的行为做出了一些修改,如果将一个匿名函数
23152315

23162316
```js
23172317
// 匿名函数
2318-
const f = function () {
2318+
function f() {
23192319
}
23202320

23212321
// ES5
@@ -2328,7 +2328,7 @@ f.name // "f"
23282328
如果将一个具名函数赋值给一个变量,则 ES5 和 ES6 的name属性都返回这个具名函数原本的名字。
23292329

23302330
```js
2331-
const bar = function test() {
2331+
function bar() {
23322332
}
23332333

23342334
// ES5
@@ -3094,9 +3094,9 @@ Array.of(3).length // 1
30943094
弥补数组构造函数`Array()`的不足。因为参数个数的不同,会导致`Array()`的行为有差异。
30953095

30963096
```js
3097-
Array() // []
3098-
Array(3) // [, , ,]
3099-
Array(3, 11, 8) // [3, 11, 8]
3097+
new Array() // []
3098+
Array.from({ length: 3 }) // [, , ,]
3099+
new Array(3, 11, 8) // [3, 11, 8]
31003100
```
31013101

31023102
`Array()`方法没有参数、一个参数、三个参数时,返回的结果都不一样。
@@ -3430,7 +3430,7 @@ arr.flatMap(function callback(currentValue[, index[, array]]) {
34303430

34313431
```js
34323432
// 返回具有 3 个空位的数组。
3433-
Array(3) // [, , ,]
3433+
Array.from({ length: 3 }) // [, , ,]
34343434
```
34353435

34363436
空位不是`undefined`,一个位置的值等于`undefined`,依然是有值的。**空位是没有任何值**,in运算符可以说明这一点。
@@ -3833,7 +3833,7 @@ descriptor.set.name // "set foo"
38333833
```js
38343834
(new Function()).name // "anonymous"
38353835

3836-
const doSomething = function () {
3836+
function doSomething() {
38373837
// ...
38383838
}
38393839
doSomething.bind().name // "bound doSomething"
@@ -4328,9 +4328,9 @@ console.log(obj) // { "0": "a", "1": "b", "2": "c" }
43284328
只有字符串合入目标对象(以字符数组的形式),数值和布尔值都会被忽略。**因为只有字符串的包装对象,会产生可枚举属性。**
43294329
43304330
```js
4331-
Object(true) // {[[PrimitiveValue]]: true}
4332-
Object(10) // {[[PrimitiveValue]]: 10}
4333-
Object('abc') // {0: "a", 1: "b", 2: "c", length: 3, [[PrimitiveValue]]: "abc"}
4331+
new Object(true) // {[[PrimitiveValue]]: true}
4332+
new Object(10) // {[[PrimitiveValue]]: 10}
4333+
new Object('abc') // {0: "a", 1: "b", 2: "c", length: 3, [[PrimitiveValue]]: "abc"}
43344334
```
43354335
43364336
`布尔值``数值``字符串`分别转成对应的包装对象,可以看到它们的原始值都在包装对象的内部属性`[[PrimitiveValue]]`
@@ -4606,7 +4606,7 @@ obj.method = function () {
46064606
```js
46074607
Object.defineProperty(Object.prototype, '__proto__', {
46084608
get() {
4609-
const _thisObj = Object(this)
4609+
const _thisObj = new Object(this)
46104610
return Object.getPrototypeOf(_thisObj)
46114611
},
46124612
set(proto) {

docs/read-books/cs-books/更了不起的Node.js.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -261,8 +261,8 @@ Node.js是基于CommonJS规范的实现,即每个文件都是一个模块,
261261
```js
262262
// 相关模块
263263

264-
const http = require('node:http')
265264
const fs = require('node:fs')
265+
const http = require('node:http')
266266

267267
// 实例化对象
268268

@@ -717,7 +717,7 @@ Node.js对模块的定义非常简单,主要分为模块应用、模块定义
717717
> 可以将关联代码封装到一个代码单元中,创建一个模块可以理解为全部有关联的函数放在一个文件中
718718
719719
```js
720-
const sayHelloEnglish = function () {
720+
function sayHelloEnglish() {
721721
return 'hello'
722722
}
723723

docs/read-books/cs-books/深入浅出的Node.js.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ web服务器的会话实现一般通过内存来存储,**当访问量大的时
379379

380380
```js
381381
// test函数 local局部变量
382-
const test = function () {
382+
function test() {
383383
const local = {}
384384
}
385385
```
@@ -419,7 +419,7 @@ Tips:同样,在非全局作用域中,想要主动释放变量引用的对
419419
主要是通过高阶函数的特性(函数可以作为参数或者返回值)完成的
420420

421421
```js
422-
const foo = function () {
422+
function foo() {
423423
const bar = function () {
424424
// 定义局部变量
425425
const local = '局部变量'
@@ -496,7 +496,7 @@ Node对内存泄露非常敏感,一旦线上项目应用拥有成千上万的
496496
// 例如利用cache全局对象来常驻老生代内存中
497497
const cache = {}
498498
// 获取目标值
499-
const get = function (key) {
499+
function get(key) {
500500
if (cache[key]) {
501501
// 内存中存在,即返回
502502
return cache[key]
@@ -507,7 +507,7 @@ const get = function (key) {
507507
}
508508

509509
// 设置key/value值
510-
const set = function (key, value) {
510+
function set(key, value) {
511511
// 设置
512512
cache[key] = value
513513
}

docs/server-end/design-patterns/技巧型模式/数据访问对象模式.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ permalink: /server-end/design-patterns/data-access-object-mode.html
2626
* @param {string} prefix Key前缀
2727
* @param {string} timeSplit 时间戳与存储数据之间的分割符
2828
*/
29-
const DAO = function (prefix, timeSplit) {
29+
function DAO(prefix, timeSplit) {
3030
this.prefix = prefix
3131
this.timeSplit = timeSplit || '|-|'
3232
}

docs/server-end/design-patterns/技巧型模式/等待者模式.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ permalink: /server-end/design-patterns/waiters-mode.html
2020
### 实现
2121

2222
```javascript
23-
const Waiter = function () {
23+
function Waiter() {
2424
let dfd = [] // 等待对象容器
2525
let doneArr = [] // 成功回调容器
2626
let failArr = [] // 失败回调容器
@@ -98,9 +98,7 @@ const Waiter = function () {
9898
failArr = failArr.concat(args) // 向失败回调函数中添加方法
9999
return this
100100
}
101-
}
102-
103-
;(function () {
101+
}(function () {
104102
const waiter = new Waiter() // 创建一个等待者实例
105103
const first = (function () {
106104
const promise = waiter.Deferred()

docs/server-end/design-patterns/技巧型模式/链模式.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ permalink: /server-end/design-patterns/link-mode.html
1919
- 闭包返回对象的方式实现,这种方式与柯里化有相似之处。
2020

2121
```javascript
22-
const Person = function () {}
22+
function Person() {}
2323
Person.prototype.setAge = function (age) {
2424
this.age = age
2525
return this

docs/server-end/es-version/ES6-2015.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const x = 100
4848

4949
```ts
5050
// ES5
51-
const result = function (x, y) {
51+
function result(x, y) {
5252
return x + y
5353
}
5454

docs/server-end/index.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1+
export * from './base/base.sidebar'
2+
export * from './database/mongo/mongoSideBar'
3+
export * from './database/mysql/mySqlSideBar'
4+
export * from './database/redis/redisSidebar'
5+
export * from './design-patterns/designPatterns.sidebar'
16
export * from './framework/egg/eggSidebar'
2-
export * from './framework/koa/koa.sidebar'
37
export * from './framework/express/express.sidebar'
4-
export * from './database/redis/redisSidebar'
5-
export * from './database/mysql/mySqlSideBar'
6-
export * from './database/mongo/mongoSideBar'
8+
export * from './framework/koa/koa.sidebar'
79
export * from './linux/linuxSidebar'
8-
export * from './design-patterns/designPatterns.sidebar'
9-
export * from './typescript/typescript.sidebar'
10-
export * from './base/base.sidebar'
1110
export * from './node-learn/nodeLearnSidebar'
1211
export * from './orm/sequelize/sequelizeOrm.sidebar'
1312
export * from './orm/typeorm/typeorm.sidebar'
13+
export * from './typescript/typescript.sidebar'
1414

1515
/**
1616
* 后端服务-侧边栏

docs/server-end/typescript/基础教程/高级类型.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ class SpaceRepeatingPadder implements Padder {
124124
}
125125

126126
getPaddingString() {
127-
return Array(this.numSpaces + 1).join(' ')
127+
return new Array(this.numSpaces + 1).join(' ')
128128
}
129129
}
130130

docs/theme.config.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
import { hopeTheme, navbar, sidebar } from 'vuepress-theme-hope'
2-
import { markdownImagePlugin } from '@vuepress/plugin-markdown-image'
31
import { OPEN_SOURCE_ADDRESS } from '@142vip/utils'
4-
import { soloAlgorithmSidebar } from './solo-algorithm/solo-algorithm.sidebar'
5-
import { FrontEndSidebar } from './front-end/front-end.sidebar'
2+
import { markdownImagePlugin } from '@vuepress/plugin-markdown-image'
3+
import { hopeTheme, navbar, sidebar } from 'vuepress-theme-hope'
4+
import { BattleInterviewSidebar } from './battle-interview/battle-interview.sidebar'
65
import { DevelopSkillSidebar } from './develop-skill/develop-skill.sidebar'
7-
import { ReadBooksSidebar } from './read-books/read-books.sidebar'
6+
import { FrontEndSidebar } from './front-end/front-end.sidebar'
87
import { JobChanceSidebar } from './job-chance/job-chance.sidebar'
98
import { MicroserviceSidebar } from './microservice/microserviceSidebar'
10-
import { BattleInterviewSidebar } from './battle-interview/battle-interview.sidebar'
9+
import { ReadBooksSidebar } from './read-books/read-books.sidebar'
1110
import {
1211
BaseSidebar,
1312
DesignPatternsSidebar,
@@ -24,6 +23,7 @@ import {
2423
TypeormSidebar,
2524
TypescriptSidebar,
2625
} from './server-end'
26+
import { soloAlgorithmSidebar } from './solo-algorithm/solo-algorithm.sidebar'
2727

2828
/**
2929
* 导航栏

vuepress.config.ts

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
import { defineUserConfig } from '@vuepress/cli'
2-
import { getDirname, path } from '@vuepress/utils'
3-
import { viteBundler } from '@vuepress/bundler-vite'
4-
import { hopeTheme } from 'vuepress-theme-hope'
51
import {
6-
JSCHeaders,
2+
getDocSiteBase,
3+
OPEN_SOURCE_ADDRESS,
4+
OPEN_SOURCE_AUTHOR,
5+
} from '@142vip/utils'
6+
import {
77
getCopyRightText,
88
getFooterHtml,
99
getThemeConfig,
1010
getViteBundler,
11+
JSCHeaders,
1112
} from '@142vip/vuepress'
12-
import {
13-
OPEN_SOURCE_ADDRESS,
14-
OPEN_SOURCE_AUTHOR,
15-
getDocSiteBase,
16-
} from '@142vip/utils'
17-
import pkg from './package.json'
13+
import { viteBundler } from '@vuepress/bundler-vite'
14+
import { defineUserConfig } from '@vuepress/cli'
15+
import { getDirname, path } from '@vuepress/utils'
16+
import { hopeTheme } from 'vuepress-theme-hope'
1817
import { navbarConfig, sidebarConfig } from './docs/theme.config'
18+
import pkg from './package.json'
1919

2020
export default defineUserConfig({
2121
base: getDocSiteBase(pkg.name),

0 commit comments

Comments
 (0)