Skip to content

Instantly share code, notes, and snippets.

@deostroll
Forked from Javiani/.eslintrc
Created June 22, 2017 17:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deostroll/97d0b433850840cb935e161d3c7958e3 to your computer and use it in GitHub Desktop.
Save deostroll/97d0b433850840cb935e161d3c7958e3 to your computer and use it in GitHub Desktop.
.eslintrc
{
"rules": {
"indent": [2,"tab"],
"quotes": [2,"single"],
"linebreak-style": [2,"unix"],
"semi": [2,"never"],
"no-unused-vars": ["error", { "vars": "all", "args": "none" }]
},
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment