Skip to content

Commit

Permalink
add eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenvegt committed Apr 8, 2021
1 parent 9d1cdd5 commit cbd3972
Show file tree
Hide file tree
Showing 5 changed files with 3,597 additions and 148 deletions.
19 changes: 19 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
module.exports = {
env: {
browser: true,
es2021: true
},
extends: [
'plugin:vue/essential',
'standard'
],
parserOptions: {
ecmaVersion: 12,
sourceType: 'module'
},
plugins: [
'vue'
],
rules: {
}
}
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,5 @@ func main() {
assetHandler := http.FileServer(getFileSystem(useFS))
e.GET("/*", echo.WrapHandler(assetHandler))

e.Logger.Fatal(e.Start(":1323"))
e.Logger.Fatal(e.Start(":1303"))
}
Loading

0 comments on commit cbd3972

Please sign in to comment.