build: Update linting config

This commit is contained in:
Cole Bemis 2017-11-19 18:01:04 -08:00 committed by GitHub
parent 343388c892
commit 14c796917d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 799 additions and 82 deletions

View File

@ -1,11 +1,17 @@
{ {
"extends": "airbnb-base", "extends": ["airbnb-base", "prettier"],
"plugins": ["import"], "plugins": ["import", "prettier"],
"rules": { "rules": {
"arrow-parens": ["error", "as-needed"],
"no-console": ["error", { "allow": ["warn", "error"] }], "no-console": ["error", { "allow": ["warn", "error"] }],
"no-param-reassign": "off", "no-param-reassign": "off",
"no-shadow": "off", "no-shadow": "off",
"no-use-before-define": "off" "no-use-before-define": "off",
"prettier/prettier": [
"error",
{
"singleQuote": true,
"trailingComma": "all"
}
]
} }
} }

3
.lintstagedrc Normal file
View File

@ -0,0 +1,3 @@
{
"*.js": "eslint"
}

View File

@ -308,7 +308,6 @@ feather.toSvg('circle', { class: 'foo bar' })
- [ ] Write icon design guidelines - [ ] Write icon design guidelines
- [ ] Track code coverage - [ ] Track code coverage
- [ ] Use Prettier to enforce consistent code style
- [ ] Improve SVG accessibility - [ ] Improve SVG accessibility
- [ ] Handle usage of custom icons - [ ] Handle usage of custom icons
- [ ] Add usage examples - [ ] Add usage examples

6
commitlint.config.js Normal file
View File

@ -0,0 +1,6 @@
module.exports = {
extends: ['@commitlint/config-angular'],
rules: {
'subject-case': 'sentence-case',
},
};

836
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -11,14 +11,22 @@
"build": "./bin/build.sh", "build": "./bin/build.sh",
"lint": "eslint .", "lint": "eslint .",
"test": "jest", "test": "jest",
"commitmsg": "validate-commit-msg",
"cm": "git-cz", "cm": "git-cz",
"precommit": "lint-staged",
"commitmsg": "commitlint --edit",
"semantic-release": "semantic-release pre && npm publish && semantic-release post" "semantic-release": "semantic-release pre && npm publish && semantic-release post"
}, },
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": { "dependencies": {
"classnames": "^2.2.5" "classnames": "^2.2.5"
}, },
"devDependencies": { "devDependencies": {
"@commitlint/cli": "^5.0.0",
"@commitlint/config-angular": "^5.0.0",
"babel-cli": "^6.24.1", "babel-cli": "^6.24.1",
"babel-loader": "^7.1.1", "babel-loader": "^7.1.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0", "babel-plugin-transform-object-rest-spread": "^6.26.0",
@ -30,25 +38,20 @@
"cz-conventional-changelog": "^2.1.0", "cz-conventional-changelog": "^2.1.0",
"eslint": "^4.0.0", "eslint": "^4.0.0",
"eslint-config-airbnb-base": "^11.2.0", "eslint-config-airbnb-base": "^11.2.0",
"eslint-config-prettier": "^2.7.0",
"eslint-plugin-import": "^2.5.0", "eslint-plugin-import": "^2.5.0",
"eslint-plugin-prettier": "^2.3.1",
"html-minifier": "^3.5.6", "html-minifier": "^3.5.6",
"husky": "^0.13.4", "husky": "^0.13.4",
"jest": "^21.2.1", "jest": "^21.2.1",
"lint-staged": "^5.0.0",
"npm-run-all": "^4.1.2", "npm-run-all": "^4.1.2",
"parse5": "^3.0.2",
"prettier": "^1.8.2", "prettier": "^1.8.2",
"rimraf": "^2.6.2", "rimraf": "^2.6.2",
"rsvp": "^3.6.0",
"semantic-release": "^6.3.6", "semantic-release": "^6.3.6",
"svgo": "^0.7.2", "svgo": "^0.7.2",
"validate-commit-msg": "^2.12.1",
"webpack": "^3.0.0" "webpack": "^3.0.0"
}, },
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/colebemis/feather.git" "url": "https://github.com/colebemis/feather.git"