stylelint-config-prettier
Version:
Turns off all rules that are unnecessary or might conflict with Prettier.
48 lines (47 loc) • 1.08 kB
JSON
{
"name": "stylelint-config-prettier",
"version": "9.0.5",
"description": "Turns off all rules that are unnecessary or might conflict with Prettier.",
"scripts": {
"lint": "npx eslint --fix \"**/*.js\" && npx prettier --write \"**/*.js\"",
"test": "node test/checker.js",
"cover": "npx c8 npm test"
},
"keywords": [
"stylelint",
"prettier",
"config",
"lint",
"css"
],
"author": "Shannon Moeller <me@shannonmoeller.com>",
"contributors": [
"Corentin Tenret <tenretcorentin@gmail.com>"
],
"repository": "prettier/stylelint-config-prettier",
"license": "MIT",
"type": "commonjs",
"main": "src/index.js",
"bin": {
"stylelint-config-prettier": "bin/check.js",
"stylelint-config-prettier-check": "bin/check.js"
},
"peerDependencies": {
"stylelint": ">= 11.x < 15"
},
"engines": {
"node": ">= 12"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"node": true
},
"parserOptions": {
"ecmaVersion": 8
}
},
"prettier": {
"singleQuote": true
}
}