Skip to content

Commit

Permalink
Rewritten in Nuxt
Browse files Browse the repository at this point in the history
  • Loading branch information
phanan committed Jun 30, 2018
1 parent 120ff45 commit 7dfc89a
Show file tree
Hide file tree
Showing 33 changed files with 7,123 additions and 974 deletions.
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# editorconfig.org
root = true

[*]
indent_size = 2
indent_style = space
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
21 changes: 21 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
module.exports = {
root: true,
env: {
browser: true,
node: true
},
parserOptions: {
parser: 'babel-eslint'
},
extends: [
// https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention
// consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules.
'plugin:vue/essential'
],
// required to lint *.vue files
plugins: [
'vue'
],
// add your custom rules here
rules: {}
}
1 change: 0 additions & 1 deletion .gitattributes

This file was deleted.

43 changes: 9 additions & 34 deletions .gitignore
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,38 +1,13 @@
# dependencies
node_modules

# Created by https://www.gitignore.io/api/macos,sass
# logs
npm-debug.log

### macOS ###
*.DS_Store
.AppleDouble
.LSOverride
# Nuxt build
.nuxt

# Icon must end with two \r
Icon
# Nuxt generate
dist


# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

### Sass ###
.sass-cache/
*.css.map

# End of https://www.gitignore.io/api/macos,sass
#
/css
.DS_Store
Loading

0 comments on commit 7dfc89a

Please sign in to comment.