Skip to content

Commit

Permalink
Merge pull request #1 from yii2-bridge/master
Browse files Browse the repository at this point in the history
Update master
  • Loading branch information
altynbek07 authored Jun 5, 2019
2 parents ba2925a + e2a3aef commit 5e13f8d
Show file tree
Hide file tree
Showing 68 changed files with 21,617 additions and 494 deletions.
11 changes: 10 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
{
"presets": [
"es2015"
]
],
"plugins": [
"transform-class-properties",
["transform-object-rest-spread",
{
"useBuiltIns": true
}
]
]

}
21 changes: 21 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"env": {
"node": true,
"browser": true,
"es6": true,
"jquery": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"quotes": [ 1, "single" ],
"comma-dangle": [ 2, "never" ],
"no-extra-semi": [ 2 ],
"no-multi-spaces": [ 1 ]
}
}
4 changes: 4 additions & 0 deletions .rsync-filter
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- /assets
- js
- .htaccess
- *.php
12 changes: 12 additions & 0 deletions .stylelintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"rules": {
"block-no-empty": true,
"color-no-invalid-hex": true,
"comment-empty-line-before": [ "always", {
"ignore": ["stylelint-commands", "between-comments"]
} ],
"declaration-colon-space-after": "always",
"max-empty-lines": 2,
"rule-non-nested-empty-line-before": "always"
}
}
Loading

0 comments on commit 5e13f8d

Please sign in to comment.