Skip to content

Commit

Permalink
Close #51 Close #73 Migration to Bootstrap 4
Browse files Browse the repository at this point in the history
  • Loading branch information
mistic100 committed Apr 1, 2018
1 parent 701c107 commit 84a5cd7
Show file tree
Hide file tree
Showing 15 changed files with 1,376 additions and 654 deletions.
15 changes: 15 additions & 0 deletions .babelrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = {
presets: [
[
'@babel/env',
{
loose : true,
modules: false,
exclude: ['transform-typeof-symbol']
}
]
],
plugins: [
'@babel/proposal-object-rest-spread'
]
};
38 changes: 38 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"extends": "airbnb-base",
"env": {
"browser": true,
"es6": true
},
"rules": {
"no-underscore-dangle": [
"off"
],
"func-names": [
"off"
],
"class-methods-use-this": [
"off"
],
"max-len": [
"error",
120
],
"brace-style": [
"error",
"stroustrup"
],
"no-param-reassign": [
"error",
{
"props": false
}
],
"key-spacing": [
"error",
{
"align": "colon"
}
]
}
}
106 changes: 0 additions & 106 deletions Gruntfile.js

This file was deleted.

Loading

0 comments on commit 84a5cd7

Please sign in to comment.