Skip to content
This repository has been archived by the owner on Aug 18, 2021. It is now read-only.

Commit

Permalink
style: lint format
Browse files Browse the repository at this point in the history
  • Loading branch information
undefined committed May 24, 2021
1 parent 5ffa6a9 commit 18e528c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@
"prepublishOnly": "npm run lint && npm run compile && npm run test"
},
"dependencies": {
"vue": "^3.0.0",
"async-validator": "^3.4.0",
"lodash-es": "^4.17.15",
"resize-observer-polyfill": "^1.5.1"
"resize-observer-polyfill": "^1.5.1",
"vue": "^3.0.0"
},
"devDependencies": {
"@babel/runtime": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/plugin-transform-typescript": "^7.10.3",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@babel/runtime": "^7.10.4",
"@types/jest": "^26.0.3",
"@types/lodash-es": "^4.17.3",
"@typescript-eslint/eslint-plugin": "^4.13.0",
Expand All @@ -44,7 +44,7 @@
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/test-utils": "^2.0.0-beta.3",
"ant-design-vue": "^2.0.0-0",
"ant-design-vue": "^2.0.0",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"css-loader": "^3.4.2",
Expand Down
2 changes: 1 addition & 1 deletion src/useForm/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export interface validateOptions {
trigger?: 'change' | 'blur' | string | string[];
}

const validateStatus = tuple('', 'success', 'warning', 'error', 'validating')
const validateStatus = tuple('', 'success', 'warning', 'error', 'validating');
export type ValidateStatus = typeof validateStatus[number];

type namesType = string | string[];
Expand Down

0 comments on commit 18e528c

Please sign in to comment.