Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mould-nuxt
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lhfe
mould-nuxt
Commits
aa7a2769
Commit
aa7a2769
authored
Mar 30, 2021
by
lipengcheng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: init
parent
bdac75cc
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
150 additions
and
2 deletions
+150
-2
.editorconfig
.editorconfig
+1
-1
.eslintignore
.eslintignore
+12
-0
.eslintrc.js
.eslintrc.js
+10
-1
.editorconfig_20210330165740
.history/.editorconfig_20210330165740
+13
-0
.editorconfig_20210330170113
.history/.editorconfig_20210330170113
+13
-0
.eslintrc_20210330165815.js
.history/.eslintrc_20210330165815.js
+20
-0
.eslintrc_20210330170323.js
.history/.eslintrc_20210330170323.js
+29
-0
.prettierrc_20210330170142.js
.history/.prettierrc_20210330170142.js
+13
-0
.prettierrc_20210330170154.js
.history/.prettierrc_20210330170154.js
+13
-0
.prettierignore
.prettierignore
+12
-0
.prettierrc.js
.prettierrc.js
+13
-0
.yarnrc
.yarnrc
+1
-0
No files found.
.editorconfig
View file @
aa7a2769
...
@@ -3,7 +3,7 @@ root = true
...
@@ -3,7 +3,7 @@ root = true
[*]
[*]
indent_style = space
indent_style = space
indent_size =
2
indent_size =
4
end_of_line = lf
end_of_line = lf
charset = utf-8
charset = utf-8
trim_trailing_whitespace = true
trim_trailing_whitespace = true
...
...
.eslintignore
0 → 100644
View file @
aa7a2769
package.json
package-lock.json
pm2.json
yarn.lock
.eslintrc.js
# 忽略有所md文件
*.md
assets/
static/
dist/
Dockerfile
# .*
.eslintrc.js
View file @
aa7a2769
...
@@ -16,5 +16,14 @@ module.exports = {
...
@@ -16,5 +16,14 @@ module.exports = {
],
],
plugins
:
[
'prettier'
],
plugins
:
[
'prettier'
],
// add your custom rules here
// add your custom rules here
rules
:
{},
rules
:
{
indent
:
[
'error'
,
4
,
{
SwitchCase
:
1
,
flatTernaryExpressions
:
true
,
},
],
},
}
}
.history/.editorconfig_20210330165740
0 → 100644
View file @
aa7a2769
# editorconfig.org
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[*.md]
trim_trailing_whitespace = false
.history/.editorconfig_20210330170113
0 → 100644
View file @
aa7a2769
# editorconfig.org
root = true
[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[*.md]
trim_trailing_whitespace = false
.history/.eslintrc_20210330165815.js
0 → 100644
View file @
aa7a2769
module
.
exports
=
{
root
:
true
,
env
:
{
browser
:
true
,
node
:
true
,
},
parserOptions
:
{
parser
:
'babel-eslint'
,
},
extends
:
[
'@nuxtjs'
,
'prettier'
,
'prettier/vue'
,
'plugin:prettier/recommended'
,
'plugin:nuxt/recommended'
,
],
plugins
:
[
'prettier'
],
// add your custom rules here
rules
:
{},
}
.history/.eslintrc_20210330170323.js
0 → 100644
View file @
aa7a2769
module
.
exports
=
{
root
:
true
,
env
:
{
browser
:
true
,
node
:
true
,
},
parserOptions
:
{
parser
:
'babel-eslint'
,
},
extends
:
[
'@nuxtjs'
,
'prettier'
,
'prettier/vue'
,
'plugin:prettier/recommended'
,
'plugin:nuxt/recommended'
,
],
plugins
:
[
'prettier'
],
// add your custom rules here
rules
:
{
indent
:
[
'error'
,
4
,
{
SwitchCase
:
1
,
flatTernaryExpressions
:
true
,
},
],
},
}
.history/.prettierrc_20210330170142.js
0 → 100644
View file @
aa7a2769
module
.
exports
=
{
// 换行长度
printWidth
:
120
,
// tab缩进大小,默认为2
tabWidth
:
4
,
// 使用tab缩进,默认false
useTabs
:
false
,
// 是否使用分号, 默认true
semi
:
false
,
// 是否使用单引号, 默认false(在jsx中配置无效, 默认都是双引号)
singleQuote
:
true
,
jsxBracketSameLine
:
true
,
}
.history/.prettierrc_20210330170154.js
0 → 100644
View file @
aa7a2769
module
.
exports
=
{
// tab缩进大小,默认为2
tabWidth
:
4
,
// // 换行长度
// printWidth: 120,
// // 使用tab缩进,默认false
// useTabs: false,
// // 是否使用分号, 默认true
// semi: false,
// // 是否使用单引号, 默认false(在jsx中配置无效, 默认都是双引号)
// singleQuote: true,
// jsxBracketSameLine: true,
}
.prettierignore
0 → 100644
View file @
aa7a2769
node_modules/
.nuxt/
dist/
.prettierrc.js
assets/
# 所有的markdown文件
*/.md
# .*
.prettierrc.js
0 → 100644
View file @
aa7a2769
module
.
exports
=
{
// tab缩进大小,默认为2
tabWidth
:
4
,
// // 换行长度
// printWidth: 120,
// // 使用tab缩进,默认false
// useTabs: false,
// // 是否使用分号, 默认true
// semi: false,
// // 是否使用单引号, 默认false(在jsx中配置无效, 默认都是双引号)
// singleQuote: true,
// jsxBracketSameLine: true,
}
.yarnrc
0 → 100644
View file @
aa7a2769
registry "https://registry.npm.taobao.org"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment