Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Nov 8, 2022. It is now read-only.

Commit0ce5ec9

Browse files
authored
chore(typo): fix spell warnings by vscode plugin (#760)
* chore(typo): fix spell warnings by vscode plugin* fix(generators): replace service with schema as convention (#754)* chore(functions): use es6 style aync function styles (#753)* chore(functions): use es6 style aync function styles* fix: missing one* chore: resolve conflict* chore clean up (#755)* chore(i18n): rm old lang settings, generators .. etc* ci(travis): update node runtime vertion to latest-12.18.0* refactor: update pkgs & rm unnecessory eslint & more* Next 9 new feature (#756)* chore(clean-up): replace installed fetch with next9's build-in fetchhttps://nextjs.org/blog/next-9-4#new-environment-variables-support* chore(eslint): upgrade for arrow-parens rule* feat(core): use next9's build-in env support* chore(deps): remove unused pkgs* Animation refactor (#757)* chore(eslint): upgrade lint config* refactor(animation): use non-implicit style* chore(eslint): upgrade rules* chore(typo): nofityDot -> notifyDot, cancle -> cancel* chore(eslint): update arrow rules* chore(prettier): format with new rules* chore(eslint): fix warnings* chore(eslint): fix warnings* refactor(hooks): mv network hooks to hooks dir* chore(eslint): fix warnings* chore(eslint): mv rules to @groupher/eslint-config-web
1 parenta4f79d6 commit0ce5ec9

File tree

529 files changed

+2507
-3541
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

529 files changed

+2507
-3541
lines changed

‎.huskyrc‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"hooks": {
3-
"pre-commit": "pretty-quick --staged",
3+
"pre-commit": "pretty-quick --staged && npm run lint:staged",
44
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
55
}
66
}

‎config/config.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"WORD_LIMIT": {
1313
"COMMENT":300
1414
},
15-
"ATATARS_LIST_LENGTH": {
15+
"AVATARS_LIST_LENGTH": {
1616
"POSTS":4,
1717
"COMMENTS":5
1818
},

‎config/index.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export {
1212
SPONSOR_AMOUNT_THRESHOLD,
1313
PAGE_SIZE,
1414
WORD_LIMIT,
15-
ATATARS_LIST_LENGTH,
15+
AVATARS_LIST_LENGTH,
1616
TAG_COLORS,
1717
TAG_COLOR_ORDER,
1818
ASSETS_ENDPOINT,

‎docs/architecture/convention.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Import S from './schema'
116116

117117
// 5. init aysnc
118118
Const sr71$=newSR71({
119-
  recieve: [
119+
  receive: [
120120
    EVENT.REFRESH_POSTS,
121121
  ],
122122
})

‎docs/architecture/convention.zh-CN.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ import S from './schema'
112112

113113
// 5. init aysnc
114114
constsr71$=newSR71({
115-
recieve: [EVENT.REFRESH_POSTS],
115+
receive: [EVENT.REFRESH_POSTS],
116116
})
117117

118118
// 6. init store

‎docs/js/async.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ The container component can listen for asynchronous events that need to be respo
4343

4444
```js
4545
Const sr71$=newSR71({
46-
  recieve: [
46+
  receive: [
4747
    EVENT.PREVIEW_OPEN,
4848
    EVENT.PREVIEW_CLOSE,
4949
    EVENT.UPLOAD_IMG_START,

‎docs/js/async.zh-CN.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const DataSolver = [
4343

4444
```js
4545
constsr71$=newSR71({
46-
recieve: [
46+
receive: [
4747
EVENT.PREVIEW_OPEN,
4848
EVENT.PREVIEW_CLOSE,
4949
EVENT.UPLOAD_IMG_START,

‎package.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
"@babel/core":"7.10.2",
134134
"@commitlint/cli":"^8.2.0",
135135
"@commitlint/config-conventional":"^8.2.0",
136-
"@groupher/eslint-config-web":"2.0.7",
136+
"@groupher/eslint-config-web":"2.0.9",
137137
"babel-eslint":"^10.0.2",
138138
"babel-jest":"^23.6.0",
139139
"babel-plugin-styled-components":"1.10.7",

‎src/components/AlertBar/styles/index.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import styled from 'styled-components'
33
// import Img from '@/Img'
44
// import { theme } from '@/utils'
55

6-
exportconstWrapper=styled.div.attrs(props=>({
6+
exportconstWrapper=styled.div.attrs((props)=>({
77
'data-testid':props.testid,
88
}))`
99
font-size: 14px;

‎src/components/ArticleActionsPanel/EditOption.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { Option, OptionIcon, OptionTitle } from './styles'
99

1010
constEditOption=({ thread, onEdit})=>(
1111
<React.Fragment>
12-
<OptiononClick={onEdit.bind(this,thread)}>
12+
<OptiononClick={()=>onEdit(thread)}>
1313
<OptionIconsrc={`${ICON_CMD}/edit.svg`}/>
1414
{thread===THREAD.REPO ?(
1515
<OptionTitle>同步仓库信息</OptionTitle>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp