Skip to content

Instantly share code, notes, and snippets.

@r0mflip
Forked from ramlmn/.eslintrc
Last active September 10, 2019 06:16
Show Gist options
  • Save r0mflip/9c811f58d7039fe7eeca3278b2e66419 to your computer and use it in GitHub Desktop.
Save r0mflip/9c811f58d7039fe7eeca3278b2e66419 to your computer and use it in GitHub Desktop.
ESLint configuration
{
"extends": "r0mflip",
"env": {
"node": true,
"browser": true
},
"parserOptions": {
"ecmaVersion": 2017
},
"rules": {
"max-len": [2, {
"code": 100,
"tabWidth": 2,
"ignoreUrls": true,
"ignoreComments": true
}]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment