Skip to content
This repository was archived by the owner on May 13, 2024. It is now read-only.

Commit 1ed9237

Browse files
committed
build: setup linter
1 parent 82a0ba8 commit 1ed9237

File tree

4 files changed

+1123
-21
lines changed

4 files changed

+1123
-21
lines changed

.eslintrc.js

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
module.exports = {
2+
root: true,
3+
4+
env: {
5+
"node": true
6+
},
7+
8+
extends: [
9+
'plugin:vue/recommended',
10+
'plugin:prettier/recommended',
11+
"prettier/vue",
12+
],
13+
14+
rules: {
15+
'no-undef': ['error'],
16+
17+
'vue/match-component-file-name': [
18+
'error',
19+
{
20+
extensions: ['js', 'vue'],
21+
shouldMatchCase: false
22+
}
23+
],
24+
25+
'vue/prop-name-casing': 0,
26+
27+
'vue/require-default-prop': 0
28+
},
29+
30+
31+
}

.prettierrc.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
module.exports = {
2+
semi:false,
3+
singleQuote: true,
4+
tabWidth: 2,
5+
trailingComma: 'es5',
6+
}

package.json

+18-1
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,24 @@
1313
],
1414
"scripts": {
1515
"test": "npm run lint && jest",
16-
"lint": "disable",
16+
"lint": "eslint . --ext .js,.vue",
1717
"docs:dev": "vuepress dev docs",
1818
"docs:build": "vuepress build docs",
1919
"example:dev": "vuepress dev example --temp example/.temp",
2020
"example:build": "vuepress build example --temp example/.temp",
2121
"prepublishOnly": "npm run example:build && conventional-changelog -p angular -r 2 -i CHANGELOG.md -s"
2222
},
23+
"husky": {
24+
"hooks": {
25+
"pre-commit": "lint-staged"
26+
}
27+
},
28+
"lint-staged": {
29+
"*.{js,vue}": [
30+
"eslint --fix",
31+
"git add"
32+
]
33+
},
2334
"repository": {
2435
"url": "ulivz/vuepress-theme-blog",
2536
"type": "git"
@@ -37,7 +48,13 @@
3748
},
3849
"devDependencies": {
3950
"conventional-changelog-cli": "^2.0.1",
51+
"eslint": "^6.8.0",
52+
"eslint-config-prettier": "^6.7.0",
4053
"eslint-config-sherry": "0.0.1",
54+
"eslint-plugin-prettier": "^3.1.2",
55+
"eslint-plugin-vue": "^6.0.1",
56+
"husky": "^3.1.0",
57+
"lint-staged": "^9.5.0",
4158
"vuepress": "^1.0.0"
4259
},
4360
"publishConfig": {

0 commit comments

Comments
 (0)