UNPKG

@salesforce/eslint-plugin-lightning

Version:

Collection of ESLint rules for Salesforce Lightning platform

52 lines (51 loc) 1.12 kB
{ "name": "@salesforce/eslint-plugin-lightning", "version": "1.0.1", "description": "Collection of ESLint rules for Salesforce Lightning platform", "main": "lib/index.js", "scripts": { "prepare": "husky install", "lint": "eslint lib/ test/", "format": "prettier --write \"**/*.{js,md}\"", "format:check": "prettier --check \"**/*.{js,md}\"", "test": "mocha" }, "repository": { "type": "git", "url": "https://github.com/salesforce/eslint-plugin-lightning" }, "keywords": [ "eslint", "eslint-plugin", "salesforce", "lightning" ], "license": "MIT", "devDependencies": { "eslint": "^8.29.0", "husky": "^8.0.2", "lint-staged": "^13.1.0", "mocha": "^10.1.0", "prettier": "^2.8.1" }, "peerDependencies": { "eslint": "^7 || ^8" }, "files": [ "lib/" ], "lint-staged": { "**/*.js": "eslint --fix", "**/*.{js,md}": "prettier --write" }, "prettier": { "singleQuote": true, "printWidth": 100, "tabWidth": 4, "trailingComma": "all" }, "mocha": { "recursive": true, "reporter": "dot" } }