Skip to content

Commit 68cd704

Browse files
pi0TheAlexLichter
authored andcommittedOct 24, 2019
refactor: lint all js blocks in markdown files (nuxt#1681)
1 parent c4fa7e1 commit 68cd704

File tree

254 files changed

+3018
-1306
lines changed

Some content is hidden

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

254 files changed

+3018
-1306
lines changed
 

‎.eslintrc

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"root": true,
3+
"parserOptions": {
4+
"parser": "babel-eslint",
5+
"sourceType": "module"
6+
},
7+
"extends": [
8+
"@nuxtjs"
9+
],
10+
"plugins": [
11+
"markdown"
12+
]
13+
}

‎de/api/components-nuxt.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ There are 3 ways to handle internal `key` prop of `<router-view/>`.
4343

4444
```js
4545
export default {
46-
key(route) {
47-
return route.fullPath
48-
}
46+
key (route) {
47+
return route.fullPath
48+
}
4949
}
5050
```
5151

0 commit comments

Comments
 (0)
Please sign in to comment.