mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-10 14:01:22 -06:00
Realized that the new syntax is only supported on [Safari 16.4](https://caniuse.com/css-media-range-syntax), which is gated by OS updates. Going to revert this change for the foreseeable future. Closes #1239.
48 lines
1.3 KiB
JSON
48 lines
1.3 KiB
JSON
{
|
|
"name": "just-the-docs",
|
|
"version": "0.3.3",
|
|
"description": "A modern Jekyll theme for documentation",
|
|
"repository": "just-the-docs/just-the-docs",
|
|
"license": "MIT",
|
|
"bugs": "https://github.com/just-the-docs/just-the-docs/issues",
|
|
"devDependencies": {
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^2.8.8",
|
|
"stylelint": "^15.6.0",
|
|
"stylelint-config-standard-scss": "^9.0.0"
|
|
},
|
|
"scripts": {
|
|
"lint": "npm-run-all --parallel --continue-on-error lint:*",
|
|
"lint:css": "stylelint '**/*.scss'",
|
|
"lint:formatting": "prettier --check '**/*.{scss,js,json}'",
|
|
"format": "prettier --write '**/*.{scss,js,json}'",
|
|
"test": "npm run lint"
|
|
},
|
|
"stylelint": {
|
|
"ignoreFiles": [
|
|
"assets/css/just-the-docs-default.scss",
|
|
"assets/css/just-the-docs-light.scss",
|
|
"assets/css/just-the-docs-dark.scss",
|
|
"_sass/vendor/**/*.scss"
|
|
],
|
|
"extends": [
|
|
"stylelint-config-standard-scss"
|
|
],
|
|
"rules": {
|
|
"alpha-value-notation": null,
|
|
"at-rule-empty-line-before": null,
|
|
"color-function-notation": null,
|
|
"media-feature-range-notation": "prefix",
|
|
"no-descending-specificity": null,
|
|
"scss/no-global-function-names": null
|
|
}
|
|
},
|
|
"prettier": {
|
|
"endOfLine": "lf",
|
|
"semi": false,
|
|
"singleQuote": false,
|
|
"tabWidth": 2,
|
|
"trailingComma": "es5"
|
|
}
|
|
}
|