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
56 changes: 56 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module",
"ecmaFeatures": {
"jsx": false
}
},
"env": {
"browser": true,
"node": true,
"mocha": true
},
"extends": "airbnb-base",
"plugins": [
"standard",
"promise"
],
"rules": {
"strict": [
"error",
"global"
],
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": [
"webpack.prod.js",
"webpack.dev.js",
"test/**/*.js"
]
}
],
"no-mixed-operators": "off",
"max-len": [
"error",
160
],
"prefer-destructuring": "off",
"one-var": "off",
"padded-blocks": "off",
"no-plusplus": "off",
"arrow-spacing": "off",
"object-curly-spacing": "off",
"prefer-const": "warn",
"no-unused-vars": "warn",
"object-shorthand": "warn",
"no-param-reassign": "warn",
"no-console": "warn",
"no-multi-spaces": "off",
"linebreak-style": [
"error",
"unix"
]
}
}
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.idea
node_modules
dist/*
package-lock.json
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ Passbook editor for Bootstrap

A Bootstrap 3 based editor for IOS Passbook-style cards.

You can see the documentation and some samples
[here](http://rawgithub.com/usrz/bootstrap-passbook/master/passbook.html).
You can see the documentation and some samples after running `npm run build` script and opening dist/index.html

LICENSE
=======
Expand Down
4 changes: 0 additions & 4 deletions build.sh

This file was deleted.

2 changes: 0 additions & 2 deletions lib/barcodes.min.js

This file was deleted.

Loading