Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
3.0
Browse files Browse the repository at this point in the history
Signed-off-by: Brian Faust <hello@brianfaust.me>
  • Loading branch information
faustbrian committed Feb 6, 2018
1 parent 0f2871a commit 4349668
Show file tree
Hide file tree
Showing 384 changed files with 9,579 additions and 8,491 deletions.
81 changes: 0 additions & 81 deletions .angular-cli.json

This file was deleted.

18 changes: 18 additions & 0 deletions .babelrc
@@ -0,0 +1,18 @@
{
"presets": [
["env", {
"modules": false,
"targets": {
"browsers": ["> 1%", "last 2 versions", "not ie <= 8"]
}
}],
"stage-2"
],
"plugins": ["transform-vue-jsx", "transform-runtime"],
"env": {
"test": {
"presets": ["env", "stage-2"],
"plugins": ["transform-vue-jsx", "istanbul"]
}
}
}
6 changes: 1 addition & 5 deletions .editorconfig
@@ -1,13 +1,9 @@
# Editor configuration, see http://editorconfig.org
root = true

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

[*.md]
max_line_length = off
trim_trailing_whitespace = false
5 changes: 5 additions & 0 deletions .eslintignore
@@ -0,0 +1,5 @@
/build/
/config/
/dist/
/*.js
/test/unit/coverage/
36 changes: 36 additions & 0 deletions .eslintrc.js
@@ -0,0 +1,36 @@
// https://eslint.org/docs/user-guide/configuring

module.exports = {
root: true,
parserOptions: {
parser: 'babel-eslint',
sourceType: 'module',
},
env: {
browser: true,
},
// https://github.com/standard/standard/blob/master/docs/RULES-en.md
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/recommended',
// https://github.com/standard/standard/blob/master/docs/RULES-en.md
'standard'
],
// required to lint *.vue files
plugins: ['html', 'vue'],
// add your custom rules here
rules: {
// allow async-await
'generator-star-spacing': 'off',
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'comma-dangle': ['error', 'only-multiline'],
'no-unused-vars': ['warn'],
'no-debugger': ['warn'],
'space-before-function-paren': ['off'],
// allow arrow functions for data
'no-return-assign': 'off',
'no-new': 'off',
},
}
62 changes: 19 additions & 43 deletions .gitignore
@@ -1,44 +1,20 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.

# compiled output
/tmp
/out-tsc

# dependencies
/node_modules

# IDEs and editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

# misc
/.sass-cache
/connect.lock
/coverage
/libpeerconnection.log
npm-debug.log
testem.log
/typings
yarn-error.log

# e2e
/e2e/*.js
/e2e/*.map

# System Files
.DS_Store
Thumbs.db

/dist
node_modules/
/dist/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
/test/unit/coverage/
/test/e2e/reports/
selenium-debug.log

package-lock.json
yarn.lock

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
1 change: 1 addition & 0 deletions .nvmrc
@@ -0,0 +1 @@
v9.4.0
10 changes: 10 additions & 0 deletions .postcssrc.js
@@ -0,0 +1,10 @@
// https://github.com/michael-ciniawsky/postcss-load-config

module.exports = {
plugins: [
require('postcss-url'),
require('postcss-import')(),
require('tailwindcss')('./tailwindconfig.js'),
require('autoprefixer')(),
],
}
27 changes: 0 additions & 27 deletions .travis.yml

This file was deleted.

19 changes: 0 additions & 19 deletions CONTRIBUTING.md

This file was deleted.

0 comments on commit 4349668

Please sign in to comment.