eslint-config-plus-prettier
Advanced tools
Comparing version 1.5.2 to 1.5.3
{ | ||
"name": "eslint-config-plus-prettier", | ||
"version": "1.5.2", | ||
"version": "1.5.3", | ||
"description": "Standard config for ESLint and Prettier", | ||
"main": "index.js", | ||
"license": "ISC", | ||
"author": "aimee rivers", | ||
"files": [ | ||
@@ -11,8 +12,13 @@ "index.js", | ||
], | ||
"main": "index.js", | ||
"scripts": { | ||
"format": "prettier --write .", | ||
"format:check": "prettier --check .", | ||
"lint": "eslint . --ext .ts,.js --fix", | ||
"format": "prettier --write ." | ||
"lint:check": "eslint . --ext .ts,.js", | ||
"package:lint": "npx npm-package-json-lint ." | ||
}, | ||
"author": "aimee rivers", | ||
"license": "ISC", | ||
"devDependencies": { | ||
"npm-package-json-lint": "8.0.0" | ||
}, | ||
"peerDependencies": { | ||
@@ -19,0 +25,0 @@ "@typescript-eslint/parser": "^7.11.0", |
@@ -13,4 +13,6 @@ # eslint-config-plus-prettier | ||
"scripts": { | ||
"format": "prettier --write .", | ||
"format:check": "prettier --check .", | ||
"lint": "eslint . --ext .ts,.js --fix", | ||
"format": "prettier --write ." | ||
"lint:check": "eslint . --ext .ts,.js" | ||
} | ||
@@ -58,3 +60,3 @@ | ||
- Linting will check for errors and fix formatting in `.ts` and `.js` files. | ||
- Formatting will apply format rules to all possible files. | ||
- `lint` will check for errors and fix formatting in `.ts` and `.js` files. | ||
- `format` will apply format rules to all possible files. |
3160
61
1