Skip to content

Commit

Permalink
Remove .stylelintrc.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ned Zimmerman committed Jul 10, 2017
1 parent 8fd41f4 commit 82902ea
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 39 deletions.
39 changes: 0 additions & 39 deletions .stylelintrc

This file was deleted.

39 changes: 39 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,44 @@
"hot": "NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"production": "NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"lint": "node_modules/stylelint/bin/stylelint.js '**/*.scss' --syntax scss"
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"indentation": 2,
"media-feature-name-no-unknown": [
true,
{
"ignoreMediaFeatureNames": [
"min--moz-device-pixel-ratio"
]
}
],
"property-no-unknown": [
true,
{
"ignoreProperties": [
"footnote-style-position",
"hyphenate-before",
"hyphenate-after",
"hyphenate-lines",
"margin-inside",
"margin-outside",
"prince-bookmark-level",
"prince-footnote-policy",
"prince-image-resolution",
"prince-page-group"
]
}
],
"selector-pseudo-element-no-unknown": [
true,
{
"ignorePseudoElements": [
"footnote-call"
]
}
]
}
}
}

0 comments on commit 82902ea

Please sign in to comment.