eslint-config-strict
Version:
ESLint sharable config for strict linting
79 lines • 1.53 kB
JSON
{
"name": "eslint-config-strict",
"version": "14.0.1",
"description": "ESLint sharable config for strict linting",
"keywords": [
"check",
"checker",
"code",
"code checker",
"code linter",
"code standards",
"code style",
"enforce",
"eslint",
"eslintconfig",
"hint",
"jscs",
"jshint",
"lint",
"policy",
"quality",
"simple",
"strict",
"strict style",
"style",
"style checker",
"style linter",
"verify"
],
"license": "MIT",
"author": "Keith Cirkel <npm@keithcirkel.co.uk> (http://keithcirkel.co.uk/)",
"files": [
"*.js"
],
"main": "es6.js",
"repository": {
"type": "git",
"url": "https://github.com/keithamus/eslint-config-strict.git"
},
"scripts": {
"semantic-release": "travis-after-all && semantic-release pre && npm publish && semantic-release post",
"test": "eslint ."
},
"config": {
"ghooks": {
"pre-commit": "npm t",
"commit-msg": "validate-commit-msg"
}
},
"eslintConfig": {
"env": {
"node": true
},
"rules": {
"indent": [
2,
2
],
"quotes": [
2,
"single"
],
"comma-dangle": [
2,
"always-multiline"
]
}
},
"dependencies": {
"eslint": "^4.1.1",
"eslint-plugin-filenames": "^1.1.0"
},
"devDependencies": {
"ghooks": "^1.3.2",
"semantic-release": "^4.3.5",
"travis-after-all": "^1.4.4",
"validate-commit-msg": "^2.8.2"
}
}