File tree 3 files changed +33
-7
lines changed
3 files changed +33
-7
lines changed Original file line number Diff line number Diff line change @@ -3,15 +3,16 @@ module.exports = {
3
3
env : {
4
4
node : true
5
5
} ,
6
- 'extends' : [
7
- 'plugin:vue/essential' ,
8
- '@vue/prettier'
6
+ extends : [
7
+ "plugin:vue/essential" ,
8
+ "plugin:prettier/recommended" ,
9
+ "@vue/prettier"
9
10
] ,
10
11
rules : {
11
- ' no-console' : process . env . NODE_ENV === ' production' ? ' error' : ' off' ,
12
- ' no-debugger' : process . env . NODE_ENV === ' production' ? ' error' : ' off'
12
+ " no-console" : process . env . NODE_ENV === " production" ? " error" : " off" ,
13
+ " no-debugger" : process . env . NODE_ENV === " production" ? " error" : " off"
13
14
} ,
14
15
parserOptions : {
15
- parser : ' babel-eslint'
16
+ parser : " babel-eslint"
16
17
}
17
- }
18
+ } ;
Original file line number Diff line number Diff line change
1
+ module . exports = {
2
+ singleQuote : true ,
3
+ semi : false
4
+ }
Original file line number Diff line number Diff line change
1
+ # real-world-vue
2
+
3
+ ## Project setup
4
+ ```
5
+ npm install
6
+ ```
7
+
8
+ ### Compiles and hot-reloads for development
9
+ ```
10
+ npm run serve
11
+ ```
12
+
13
+ ### Compiles and minifies for production
14
+ ```
15
+ npm run build
16
+ ```
17
+
18
+ ### Lints and fixes files
19
+ ```
20
+ npm run lint
21
+ ```
You can’t perform that action at this time.
0 commit comments