Skip to content

Commit c1e83da

Browse files
committed
init
0 parents  commit c1e83da

10 files changed

+1787
-0
lines changed

.editorconfig

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# See http://editorconfig.org/
2+
root = true
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true

.eslintrc.js

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
const path = require('path');
2+
3+
module.exports = {
4+
root: true,
5+
extends: [
6+
'plugin:vue/recommended',
7+
'dwing'
8+
],
9+
10+
parserOptions: {
11+
parser: 'babel-eslint',
12+
sourceType: 'module',
13+
allowImportExportEverywhere: true
14+
},
15+
settings: {
16+
'import/resolver': {
17+
webpack: {
18+
config: {
19+
resolve: {
20+
modules: [
21+
'node_modules',
22+
path.resolve(__dirname)
23+
],
24+
extensions: [
25+
'.js',
26+
'.vue'
27+
],
28+
alias: {
29+
'@theme': path.resolve(__dirname)
30+
}
31+
}
32+
}
33+
}
34+
}
35+
},
36+
rules: {
37+
'import/no-extraneous-dependencies': 0,
38+
'vue/max-attributes-per-line': 0
39+
}
40+
};

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
node_modules/
2+
demo/
3+
4+
*.log
5+
*.log.*
6+
.DS_Store

.npmignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
node_modules/
2+
demo/
3+
4+
*.log
5+
*.log.*
6+
.DS_Store

.vscode/settings.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"path-intellisense.mappings": {
3+
"@theme": "${workspaceRoot}"
4+
}
5+
}

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018 Willin Wang
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Vuepress Theme - AssholeV0
2+
3+
See demo on <https://v0.chat/>
4+

layout.vue

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<template>
2+
<div>
3+
Hello World
4+
</div>
5+
</template>

package.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "vuepress-theme-asshole",
3+
"version": "1.0.0",
4+
"description": "A Vuepress Theme for assholev0",
5+
"main": "layout.vue",
6+
"repository": "[email protected]:assholev0/vuepress-theme-asshole.git",
7+
"author": "willin <[email protected]>",
8+
"license": "MIT",
9+
"keywords": [
10+
"vuepress",
11+
"theme"
12+
],
13+
"devDependencies": {
14+
"babel-eslint": "^9.0.0",
15+
"eslint": "^5.6.0",
16+
"eslint-config-dwing": "^1.2.1",
17+
"eslint-import-resolver-webpack": "^0.10.1",
18+
"eslint-plugin-vue": "^5.0.0-beta.3"
19+
}
20+
}

0 commit comments

Comments
 (0)