Skip to content

Commit e34cfec

Browse files
committed
Reformat with prettier
1 parent 5957334 commit e34cfec

File tree

4 files changed

+10
-29
lines changed

4 files changed

+10
-29
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ following example adds a `todos` Smart Query to a component, in Vue class compon
6060
skip: 0,
6161
};
6262
},
63-
})
64-
}
63+
}),
64+
},
6565
})
6666
class TodoList extends Vue {
6767
todos: Todo[] | null = null;
@@ -142,7 +142,7 @@ class TodoList extends Vue {
142142
title: 'Bake a cake',
143143
},
144144
});
145-
145+
146146
if (!result.success) {
147147
throw new Error(`Failed to create Todo!`);
148148
}

barrelsby.json

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
{
22
"directory": "src/",
3-
"exclude": [
4-
"\\.(spec|e2e-spec)\\.ts$",
5-
"src/cli/",
6-
"src/database/",
7-
"src/testing/"
8-
],
3+
"exclude": ["\\.(spec|e2e-spec)\\.ts$", "src/cli/", "src/database/", "src/testing/"],
94
"location": "all",
105
"structure": "flat",
116
"singleQuotes": true,

renovate.json

+2-6
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,8 @@
1212
"prCreation": "not-pending",
1313
"stabilityDays": 3,
1414
"rebaseWhen": "conflicted",
15-
"labels": [
16-
"dependencies"
17-
],
18-
"reviewers": [
19-
"sgarner"
20-
],
15+
"labels": ["dependencies"],
16+
"reviewers": ["sgarner"],
2117
"packageRules": [
2218
{
2319
"packagePatterns": ["eslint"],

tsconfig.json

+4-14
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,9 @@
1515
"strictNullChecks": true,
1616
"outDir": "./dist",
1717
"baseUrl": "./",
18-
"paths": {
19-
},
20-
"types": [
21-
"@types/node",
22-
"@types/jest",
23-
"vue-apollo/types"
24-
]
18+
"paths": {},
19+
"types": ["@types/node", "@types/jest", "vue-apollo/types"]
2520
},
26-
"include":[
27-
"src/**/*",
28-
"test/**/*"
29-
],
30-
"exclude": [
31-
"node_modules"
32-
]
21+
"include": ["src/**/*", "test/**/*"],
22+
"exclude": ["node_modules"]
3323
}

0 commit comments

Comments
 (0)