Skip to content

Commit 1325d41

Browse files
committed
vue3 base
0 parents  commit 1325d41

File tree

129 files changed

+25599
-0
lines changed

Some content is hidden

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

129 files changed

+25599
-0
lines changed

.eslintignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
dist
3+
lib
4+
es
5+
node_modules
6+
/locale
7+
/index.*

.eslintrc.js

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
module.exports = {
2+
root: true,
3+
parserOptions: {
4+
parser: 'babel-eslint',
5+
},
6+
env: {
7+
browser: true,
8+
jest: true,
9+
es6: true,
10+
},
11+
settings: {
12+
'import/resolver': {
13+
node: {
14+
extensions: ['.js', '.jsx', '.vue'],
15+
},
16+
},
17+
'import/extensions': ['.js', '.jsx', '.vue'],
18+
},
19+
extends: ['airbnb-base', 'plugin:vue/recommended', 'prettier', 'prettier/vue'],
20+
21+
plugins: ['vue'],
22+
23+
rules: {
24+
// allow debugger during development
25+
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
26+
'no-console': ['error', { allow: ['warn', 'error'] }],
27+
'no-plusplus': 'off',
28+
'no-underscore-dangle': 'off',
29+
'no-param-reassign': 'off',
30+
'no-restricted-globals': 'off',
31+
'import/prefer-default-export': 'off',
32+
'import/no-unresolved': [2, { ignore: ['vue2-datepicker'] }],
33+
'import/no-extraneous-dependencies': 'off',
34+
'import/extensions': [
35+
'error',
36+
'always',
37+
{
38+
js: 'never',
39+
vue: 'never',
40+
},
41+
],
42+
'vue/require-default-prop': 'off',
43+
'vue/require-prop-types': 'off',
44+
'vue/no-v-html': 'off',
45+
},
46+
};

.github/FUNDING.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# These are supported funding model platforms
2+
3+
custom: https://www.paypal.me/mengxiong10

.github/ISSUE_TEMPLATE/bug_report.md

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: "[Bug]"
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Vue2-datepicker version**:
11+
**Vue version**:
12+
**Browser**:
13+
14+
**Steps to reproduce**
15+
16+
17+
**Reproduction Link or Source Code**
18+
19+
20+
**Expected behavior**
21+
22+
23+
**Actual behavior**
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: "[Feature request]"
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**What problem does this feature solve?**
11+
12+
13+
**What does the proposed API look like?**

.gitignore

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
.vscode
2+
.cache
3+
4+
_site
5+
6+
node_modules
7+
8+
/dist
9+
10+
/locale
11+
12+
/index.*
13+
14+
/scss

.prettierrc

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"trailingComma": "es5",
3+
"tabWidth": 2,
4+
"semi": true,
5+
"singleQuote": true,
6+
"printWidth": 100,
7+
"arrowParens": "always",
8+
"jsxBracketSameLine": true
9+
}

0 commit comments

Comments
 (0)