Skip to content

Instantly share code, notes, and snippets.

@annguyenwasd
Last active April 26, 2020 14:14
Show Gist options
  • Save annguyenwasd/3bc856dacfb410953f2544da23d95777 to your computer and use it in GitHub Desktop.
Save annguyenwasd/3bc856dacfb410953f2544da23d95777 to your computer and use it in GitHub Desktop.
{
"devDependencies": {
"import-sort-cli": "^6.0.0",
"import-sort-style-react": "^5.1.0",
},
"scripts": {
"sort-imports": "./node_modules/import-sort-cli/lib/index.js --write ./src/**/*.js"
},
"importSort": {
".js": {
"style": "react"
}
},
"husky": {
"hooks": {
"pre-commit": "npm run sort-imports; git add .;npm run eslint"
}
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment