Skip to content

Commit 35d2b3d

Browse files
committed
update folder structure
1 parent 35b0f09 commit 35d2b3d

27 files changed

+6311
-203
lines changed
File renamed without changes.

.eslintrc

Lines changed: 0 additions & 3 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.

example/.browserslistrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
> 1%
2+
last 2 versions
3+
not dead
File renamed without changes.

example/.eslintrc.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
module.exports = {
2+
root: true,
3+
env: {
4+
node: true
5+
},
6+
extends: ['plugin:vue/essential', 'eslint:recommended', '@vue/prettier'],
7+
parserOptions: {
8+
parser: 'babel-eslint'
9+
},
10+
rules: {
11+
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
12+
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
13+
}
14+
}
File renamed without changes.

example/.prettierrc.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# .prettierrc or .prettierrc.yaml
2+
# printWidth: 80
3+
tabWidth: 2
4+
semi: false
5+
singleQuote: true
6+
# trailingComma: 'es5'
7+
# bracketSpacing: true
8+
arrowParens: 'avoid'
File renamed without changes.

0 commit comments

Comments
 (0)