-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
446 additions
and
557 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
yarn commitlint --edit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
yarn test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
node_modules | ||
tests | ||
lib | ||
.eslintrc.json | ||
.eslintrc | ||
commitlint.config.js | ||
jest.config.js | ||
.prettierrc | ||
.prettierignore | ||
.huskyrc | ||
.editorconfig | ||
.gitignore | ||
tsconfig.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1,64 @@ | ||
{ | ||
"name": "eslint-plugin-hooks-sort", | ||
"version": "0.1.1", | ||
"name": "eslint-plugin-hooks", | ||
"version": "0.2.0", | ||
"description": "A simple organizer for ordering hooks.", | ||
"keywords": [ | ||
"eslint", | ||
"eslintplugin", | ||
"eslint-plugin", | ||
"hooks", | ||
"react", | ||
"react-hooks" | ||
], | ||
"main": "dist/index.js", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/hiukky/eslint-plugin-hooks-sort.git" | ||
"url": "git+https://github.com/hiukky/eslint-plugin-hooks.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/hiukky/eslint-plugin-hooks-sort/issues" | ||
"url": "https://github.com/hiukky/eslint-plugin-hooks/issues" | ||
}, | ||
"author": { | ||
"name": "Romullo @hiukky", | ||
"email": "developermarsh@gmail.com", | ||
"url": "https://hiukky.com/" | ||
}, | ||
"scripts": { | ||
"prepare": "husky install", | ||
"clean": "rimraf dist typings", | ||
"prebuild": "yarn clean", | ||
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/**/*.spec.ts' --recursive", | ||
"build": "tsc -d -p .", | ||
"format": "prettier --write \"**/*.ts\"" | ||
"format": "prettier --write \"**/*.ts\"", | ||
"prepublishOnly": "pinst --disable", | ||
"postpublish": "pinst --enable" | ||
}, | ||
"dependencies": { | ||
"requireindex": "~1.2.0" | ||
}, | ||
"devDependencies": { | ||
"@commitlint/cli": "^11.0.0", | ||
"@commitlint/config-conventional": "^11.0.0", | ||
"@types/chai": "^4.2.14", | ||
"@types/eslint": "^7.2.6", | ||
"@types/mocha": "^8.2.0", | ||
"@types/node": "^14.14.19", | ||
"@types/react": "^17.0.0", | ||
"@commitlint/cli": "^12.1.1", | ||
"@commitlint/config-conventional": "^12.1.1", | ||
"@types/chai": "^4.2.15", | ||
"@types/eslint": "^7.2.8", | ||
"@types/mocha": "^8.2.2", | ||
"@types/node": "^14.14.37", | ||
"@types/react": "^17.0.3", | ||
"@types/requireindex": "^1.2.0", | ||
"@typescript-eslint/eslint-plugin": "^4.11.1", | ||
"eslint": "^7.17.0", | ||
"husky": "^4.3.6", | ||
"mocha": "^8.2.1", | ||
"@typescript-eslint/eslint-plugin": "^4.20.0", | ||
"eslint": "^7.23.0", | ||
"eslint-config-airbnb-base": "^14.2.1", | ||
"husky": "^6.0.0", | ||
"mocha": "^8.3.2", | ||
"pinst": "^2.1.6", | ||
"prettier": "^2.2.1", | ||
"react": "^17.0.1", | ||
"react": "^17.0.2", | ||
"rimraf": "^3.0.2", | ||
"ts-node": "^9.1.1", | ||
"typescript": "^4.1.3", | ||
"eslint-config-airbnb-base": "^14.2.1" | ||
"typescript": "^4.2.3" | ||
}, | ||
"engines": { | ||
"node": ">=0.10.0" | ||
}, | ||
"license": "MIT" | ||
"license": "MIT", | ||
"keywords": [ | ||
"eslint", | ||
"eslintplugin", | ||
"eslint-plugin", | ||
"hooks", | ||
"react", | ||
"react-hooks" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.