Skip to content

Commit

Permalink
Merge branch 'release/5.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Solazzi committed Mar 27, 2017
2 parents dd31384 + a2c3fdf commit be12129
Show file tree
Hide file tree
Showing 39 changed files with 6,828 additions and 678 deletions.
8 changes: 8 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"presets": [
["es2015", {"loose": true, "modules": false}]
],
"plugins" : [
["transform-runtime", {"polyfill": false, "regenerator": false }]
]
}
3 changes: 0 additions & 3 deletions .bowerrc

This file was deleted.

17 changes: 0 additions & 17 deletions .eslintrc

This file was deleted.

26 changes: 26 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"env": {
"browser": false,
"es6": true
},
"extends": "airbnb-base",

"rules": {
"indent": [2, 4],
"no-multiple-empty-lines": [2, { "max": 3 }],
"spaced-comment": 0,
"comma-dangle": [2, "never"],
"eol-last": [1, "never"],
"padded-blocks": [1, { "classes": "always" }],
"max-len": 0,
"arrow-parens": 0,
"global-require": 0,
"no-commonjs": 0,
"arrow-body-style": 0,
"prefer-template": 0,

"import/no-dynamic-require": 0,
"import/no-unresolved": [2, {"commonjs": true}],
"import/no-extraneous-dependencies": [2, {"devDependencies": true, "optionalDependencies": true, "peerDependencies": true}]
}
}
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ $RECYCLE.BIN/
.DS_Store?
.AppleDouble
.LSOverride
Icon
._*
.Spotlight-V100
.Trashes
Expand Down Expand Up @@ -105,8 +104,6 @@ log
.phptidy-cache
_svn
node_modules
bin
etc
/lib
assets.json
public/*
Expand Down
203 changes: 0 additions & 203 deletions .scss-lint.yml

This file was deleted.

1 change: 1 addition & 0 deletions .stylelintignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
application/assets/vendors/
public/assets/stylesheets/
node_modules/
10 changes: 6 additions & 4 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,17 @@
"stylelint-config-standard"
],
"plugins": [
"stylelint-scss"
"stylelint-scss",
"stylelint-order"
],
"rules": {
"indentation": 4,
"max-empty-lines": 3,
"rule-nested-empty-line-before": ["always", {
"rule-empty-line-before": ["always", {
"ignore": ["after-comment"]
}],
"at-rule-empty-line-before": [ "always", {
"ignore": ["after-comment", "blockless-group", "all-nested"],
"ignore": ["after-comment", "inside-block", "blockless-after-same-name-blockless"],
"ignoreAtRules": ["else", "content", "return", "warn"]
}],
"block-closing-brace-newline-after": ["always", {
Expand All @@ -22,7 +23,8 @@
"function-comma-newline-after": null,
"no-missing-end-of-source-newline": null,
"declaration-empty-line-before": "never",
"declaration-block-properties-order": [

"order/properties-order": [

"position",
"top",
Expand Down
Loading

0 comments on commit be12129

Please sign in to comment.