Skip to content

Commit

Permalink
chore: lint upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
naltatis committed Aug 10, 2023
1 parent 2c64569 commit 3391e88
Show file tree
Hide file tree
Showing 7 changed files with 2,946 additions and 3,464 deletions.
7 changes: 6 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,10 @@
"extends": "airbnb",
"rules": {
"import/extensions": 0
}
},
"settings": {
"react": {
"version": "16.0"
}
}
}
7 changes: 5 additions & 2 deletions .stylelintrc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@
"at-rule-no-unknown": null,
"color-hex-length": "long",
"color-hex-case": "lower",
declaration-block-no-shorthand-property-overrides: null,
no-descending-specificity: null
"declaration-block-no-shorthand-property-overrides": null,
"no-descending-specificity": null,
"media-feature-range-notation": null,
"no-duplicate-selectors": null,
"declaration-block-no-redundant-longhand-properties": null
}
}
7 changes: 2 additions & 5 deletions 0-model-store/page.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ aside {

dl {
display: grid;
grid-column-gap: 15px;
grid-row-gap: 2px;
grid-gap: 2px 15px;
grid-template-columns: 2fr 1fr;
max-width: 300px;
}
Expand All @@ -26,9 +25,7 @@ dd {

#app {
display: grid;
grid-column-gap: 20px;
grid-gap: 20px;
grid-row-gap: 10px;
grid-gap: 10px 20px;
margin: 20px auto;
min-width: 500px;
}
Expand Down
7 changes: 2 additions & 5 deletions 1-composition-client-only/page.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ aside {

dl {
display: grid;
grid-column-gap: 15px;
grid-row-gap: 2px;
grid-gap: 2px 15px;
grid-template-columns: 2fr 1fr;
max-width: 300px;
}
Expand All @@ -26,9 +25,7 @@ dd {

#app {
display: grid;
grid-column-gap: 20px;
grid-gap: 20px;
grid-row-gap: 10px;
grid-gap: 10px 20px;
margin: 20px auto;
min-width: 500px;
outline: 3px dashed orangered;
Expand Down
7 changes: 2 additions & 5 deletions 2-composition-universal/nginx/common/page.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ aside {

dl {
display: grid;
grid-column-gap: 15px;
grid-row-gap: 2px;
grid-gap: 2px 15px;
grid-template-columns: 2fr 1fr;
max-width: 300px;
}
Expand All @@ -26,9 +25,7 @@ dd {

#app {
display: grid;
grid-column-gap: 20px;
grid-gap: 20px;
grid-row-gap: 10px;
grid-gap: 10px 20px;
margin: 20px auto;
min-width: 500px;
}
Expand Down
Loading

0 comments on commit 3391e88

Please sign in to comment.