Skip to content

Commit 84a5cd7

Browse files
committed
Close #51 Close #73 Migration to Bootstrap 4
1 parent 701c107 commit 84a5cd7

15 files changed

+1376
-654
lines changed

.babelrc.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
module.exports = {
2+
presets: [
3+
[
4+
'@babel/env',
5+
{
6+
loose : true,
7+
modules: false,
8+
exclude: ['transform-typeof-symbol']
9+
}
10+
]
11+
],
12+
plugins: [
13+
'@babel/proposal-object-rest-spread'
14+
]
15+
};

.eslintrc.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"extends": "airbnb-base",
3+
"env": {
4+
"browser": true,
5+
"es6": true
6+
},
7+
"rules": {
8+
"no-underscore-dangle": [
9+
"off"
10+
],
11+
"func-names": [
12+
"off"
13+
],
14+
"class-methods-use-this": [
15+
"off"
16+
],
17+
"max-len": [
18+
"error",
19+
120
20+
],
21+
"brace-style": [
22+
"error",
23+
"stroustrup"
24+
],
25+
"no-param-reassign": [
26+
"error",
27+
{
28+
"props": false
29+
}
30+
],
31+
"key-spacing": [
32+
"error",
33+
{
34+
"align": "colon"
35+
}
36+
]
37+
}
38+
}

Gruntfile.js

Lines changed: 0 additions & 106 deletions
This file was deleted.

0 commit comments

Comments
 (0)