UNPKG

eslint-plugin-no-inferred-method-name

Version:
50 lines (49 loc) 1.1 kB
{ "name": "eslint-plugin-no-inferred-method-name", "version": "2.0.0", "description": "ES6 object literal method linting for ESLint", "main": "index.js", "scripts": { "lint": "eslint ./" }, "files": [ "LICENSE.md", "README.md", "lib", "index.js" ], "repository": { "type": "git", "url": "git+https://github.com/johnstonbl01/eslint-no-inferred-method-name.git" }, "homepage": "https://github.com/johnstonbl01/eslint-no-inferred-method-name", "bugs": "https://github.com/johnstonbl01/eslint-no-inferred-method-name/issues", "keywords": [ "eslint", "eslint-plugin" ], "author": "Blake Johnston <johnstonbl01@gmail.com>", "license": "MIT", "devDependencies": { "eslint": "^6.5.1", "husky": "^3.0.9", "lint-staged": "^9.4.2", "prettier": "^1.18.2" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "{lib, tests}/**/*.js": [ "prettier --write", "npm run lint", "git add" ], "*.{json, md}": [ "prettier --write", "git add" ] } }