Skip to content

Commit be12129

Browse files
author
Marco Solazzi
committed
Merge branch 'release/5.0.0'
2 parents dd31384 + a2c3fdf commit be12129

39 files changed

+6828
-678
lines changed

.babelrc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"presets": [
3+
["es2015", {"loose": true, "modules": false}]
4+
],
5+
"plugins" : [
6+
["transform-runtime", {"polyfill": false, "regenerator": false }]
7+
]
8+
}

.bowerrc

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

.eslintrc

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

.eslintrc.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"env": {
3+
"browser": false,
4+
"es6": true
5+
},
6+
"extends": "airbnb-base",
7+
8+
"rules": {
9+
"indent": [2, 4],
10+
"no-multiple-empty-lines": [2, { "max": 3 }],
11+
"spaced-comment": 0,
12+
"comma-dangle": [2, "never"],
13+
"eol-last": [1, "never"],
14+
"padded-blocks": [1, { "classes": "always" }],
15+
"max-len": 0,
16+
"arrow-parens": 0,
17+
"global-require": 0,
18+
"no-commonjs": 0,
19+
"arrow-body-style": 0,
20+
"prefer-template": 0,
21+
22+
"import/no-dynamic-require": 0,
23+
"import/no-unresolved": [2, {"commonjs": true}],
24+
"import/no-extraneous-dependencies": [2, {"devDependencies": true, "optionalDependencies": true, "peerDependencies": true}]
25+
}
26+
}

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ $RECYCLE.BIN/
7272
.DS_Store?
7373
.AppleDouble
7474
.LSOverride
75-
Icon
7675
._*
7776
.Spotlight-V100
7877
.Trashes
@@ -105,8 +104,6 @@ log
105104
.phptidy-cache
106105
_svn
107106
node_modules
108-
bin
109-
etc
110107
/lib
111108
assets.json
112109
public/*

.scss-lint.yml

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

.stylelintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
application/assets/vendors/
2+
public/assets/stylesheets/
23
node_modules/

.stylelintrc.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,17 @@
33
"stylelint-config-standard"
44
],
55
"plugins": [
6-
"stylelint-scss"
6+
"stylelint-scss",
7+
"stylelint-order"
78
],
89
"rules": {
910
"indentation": 4,
1011
"max-empty-lines": 3,
11-
"rule-nested-empty-line-before": ["always", {
12+
"rule-empty-line-before": ["always", {
1213
"ignore": ["after-comment"]
1314
}],
1415
"at-rule-empty-line-before": [ "always", {
15-
"ignore": ["after-comment", "blockless-group", "all-nested"],
16+
"ignore": ["after-comment", "inside-block", "blockless-after-same-name-blockless"],
1617
"ignoreAtRules": ["else", "content", "return", "warn"]
1718
}],
1819
"block-closing-brace-newline-after": ["always", {
@@ -22,7 +23,8 @@
2223
"function-comma-newline-after": null,
2324
"no-missing-end-of-source-newline": null,
2425
"declaration-empty-line-before": "never",
25-
"declaration-block-properties-order": [
26+
27+
"order/properties-order": [
2628

2729
"position",
2830
"top",

0 commit comments

Comments
 (0)