Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 0 additions & 35 deletions .eslintrc

This file was deleted.

103 changes: 103 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
env:
browser: true
es6: true
node: true

# # Not sure if required (eslint-plugin-flowtype vs eslint-plugin-flowtype-errors)
# # extends: 'plugin:flowtype/recommended'
# plugins:
# - vue

parser: 'babel-eslint'
# extends: ['vue', 'eslint:recommended']

parserOptions:
sourceType: module

rules:
indent:
- error
- 4
linebreak-style:
- error
- windows
quotes:
- error
- single
semi:
- error
- always
no-use-before-define:
- error
no-extra-semi:
- error
array-bracket-spacing:
- error
- never
camelcase:
- error
- properties: never
space-in-parens:
- error
- never
brace-style:
- error
- 1tbs
- allowSingleLine: true
comma-dangle:
- error
- never
func-call-spacing:
- error
- never
func-style:
- error
- declaration
- allowArrowFunctions: true
key-spacing:
- error
- beforeColon: false
afterColon: true
mode: strict
keyword-spacing:
- error
- before: true
after: true
max-statements-per-line:
- error
- max: 1
new-cap:
- error
- newIsCap: true
capIsNew: false
newline-after-var:
- error
- always
newline-before-return: error
no-mixed-spaces-and-tabs: error
no-multiple-empty-lines:
- error
- max: 2
no-tabs: error
no-trailing-spaces: error
no-whitespace-before-property: error
object-curly-spacing:
- error
- always
semi-spacing:
- error
- before: false
after: true
space-before-blocks: error
space-before-function-paren:
- error
- anonymous: always
named: never
asyncArrow: always
space-infix-ops: error
symbol-description: error
no-var: error
arrow-spacing:
- error
- before: true
after: true
69 changes: 66 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,67 @@
build/
dist/
# Nuxt build
.nuxt

# Nuxt generate
dist

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
bower_components/
jspm_packages/

# Typescript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

# ignore editor settings
.jsbeautifyrc
3 changes: 0 additions & 3 deletions .jshintrc

This file was deleted.

26 changes: 26 additions & 0 deletions .stylelintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Use standard stylelint recommendation
extends: 'stylelint-config-standard'

plugins:
- 'stylelint-scss'

rules:

# Color related standards
color-hex-case: upper
color-hex-length: long

indentation: 4

at-rule-no-unknown:
- true
- ignoreAtRules:
# Mixins coming from SCSS
- 'include'
- 'mixin'
- 'if'
- 'else'
- 'content'
- 'warn'

string-quotes: single
22 changes: 0 additions & 22 deletions .travis.yml

This file was deleted.

1 change: 0 additions & 1 deletion CNAME

This file was deleted.

5 changes: 2 additions & 3 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)
MIT License

Copyright (c) 2015 WebF <web/F>
Copyright (c) 2017 Usable Bytes

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -19,4 +19,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

19 changes: 2 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,2 @@
# WebF [![Build Status](https://travis-ci.org/webf-zone/webf.svg?branch=master)](https://travis-ci.org/webf-zone/webf)
Source code for public website http://webf.zone

Features required for the blog
01. Archieve section
02. RSS feed
03. Comment system
04. Search
05. Social media integration
06. Contact method
07. Tag, Categories & taxonomy section
08. Blog categorization & pages
09. Email subscription
10. Featured & popular post
11. Related posts
12. Author section (Reusable)
13.
# Webf-website
Web-F website source code
24 changes: 0 additions & 24 deletions bower.json

This file was deleted.

27 changes: 0 additions & 27 deletions deploy.sh

This file was deleted.

12 changes: 0 additions & 12 deletions gulp/.jshintrc

This file was deleted.

Loading