UNPKG

eslint-bankruptcy

Version:

Codemod to eslint-disable all instances of a rule violation in a codebase

73 lines (72 loc) 1.75 kB
{ "name": "eslint-bankruptcy", "version": "1.1.0", "description": "Codemod to eslint-disable all instances of a rule violation in a codebase", "main": "index.js", "repository": "git@github.com:NickHeiner/eslint-bankruptcy.git", "author": "Nick Heiner <nth23@cornell.edu>", "license": "MIT", "bin": { "declare-eslint-bankruptcy": "./bin/index.js" }, "keywords": [ "ast", "command-line-tool", "cli", "utility", "eslint" ], "devDependencies": { "@types/find-parent-dir": "^0.3.0", "@types/hard-rejection": "2.0.0", "@types/jest": "^24.0.25", "@types/lodash": "^4.14.149", "@types/mkdirp": "^0.5.2", "@types/ncp": "^2.0.3", "@types/node": "^13.1.2", "@types/tmp": "^0.1.0", "@types/yargs": "^13.0.4", "eslint": "^6.8.0", "eslint-config-nth": "^2.0.1", "eslint-plugin-jest": "^23.2.0", "globby": "^10.0.1", "jest": "^24.9.0", "tmp": "^0.1.0", "typescript": "4.2.4", "write-json-file": "4.3.0" }, "dependencies": { "execa": "5.0.0", "find-parent-dir": "^0.3.0", "hard-rejection": "2.1.0", "load-json-file": "^6.2.0", "lodash": "^4.17.15", "nth-log": "2.0.1", "resolve-from": "^5.0.0", "yargs": "^15.1.0" }, "scripts": { "lint": "eslint index.js bin __tests__ --max-warnings 0", "lint:fix": "yarn run lint --fix", "typecheck": "yarn run tsc", "test": "yarn run lint && yarn run typecheck && CI=true jest" }, "eslintConfig": { "env": { "es6": true, "node": true }, "rules": { "no-console": "off", "no-use-before-define": [ "error", { "functions": false } ] }, "extends": [ "nth" ] } }