Last active
October 19, 2017 03:29
-
-
Save ktrysmt/667fbe4c98ba89b2dbe1123983186411 to your computer and use it in GitHub Desktop.
init files for npm module development.
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
{ | |
"extends": "standard", | |
"rules": { | |
"semi": [2, "always"] | |
} | |
} |
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
{ | |
"devDependencies": { | |
"eslint": "^4.9.0", | |
"eslint-config-standard": "^10.2.1", | |
"eslint-plugin-import": "^2.7.0", | |
"eslint-plugin-node": "^5.2.0", | |
"eslint-plugin-promise": "^3.6.0", | |
"eslint-plugin-standard": "^3.0.1" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment