Skip to content

Instantly share code, notes, and snippets.

@codewithtyler
Created February 26, 2019 23:17
Show Gist options
  • Save codewithtyler/4cf16b119aa5ca544c96cbf1c9f95439 to your computer and use it in GitHub Desktop.
Save codewithtyler/4cf16b119aa5ca544c96cbf1c9f95439 to your computer and use it in GitHub Desktop.
Urban Engine Default ESLint Config
// Use this file as a starting point for your project's .eslintrc.
// Copy this file, and add rule overrides as needed.
{
"extends": "airbnb",
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"es6": true
},
"rules": {
"array-bracket-spacing": "always",
"brace-style": [ "error", "stroustrup", { "allowSingleLine": false } ],
"quotes": [ "error", "single" ],
"space-in-parens": [ "error", "always" ]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment