rizzo-next
Version:
The next generation of Lonely Planet's style guide and pattern library.
33 lines (32 loc) • 585 B
Plain Text
{
"parser": "babel-eslint",
"globals": {
"$": true,
"Modernizr": true,
"ENV_PROD": true,
"ga": true,
"googletag": true,
"utag": true
},
"env": {
"browser": true,
"node": true,
"es6": true
},
"rules": {
"quotes": [1, "double"],
"eol-last": [0],
"no-mixed-requires": [0],
"no-underscore-dangle": [0],
"strict": [0, "never"],
"no-var": [1],
"no-unused-vars": [1],
"react/jsx-uses-vars": 1,
"semi": [1, "always"],
"no-use-before-define": [2],
"no-undef": [2]
},
"plugins": [
"react"
]
}