Skip to content

Instantly share code, notes, and snippets.

@zymr-keshav
Created September 20, 2017 09:32
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 zymr-keshav/d734d8f1902271225b620a3a2ee8b150 to your computer and use it in GitHub Desktop.
Save zymr-keshav/d734d8f1902271225b620a3a2ee8b150 to your computer and use it in GitHub Desktop.
my eslint rc rule file in sublime-text3
{
"env": {
"browser": true,
"node": true,
"es6": true
},
"extends": "eslint:recommended",
"globals": {
"angular": true,
"module": true,
"inject": true,
"moment": true,
"saveAs": true,
"require": false
},
"rules": {
"wrap-iife": [0, "any"],
"quotes": [0, "double"],
"indent": [0, "tab"],
"linebreak-style": [0, "unix"],
"semi": [2, "always"]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment