Skip to content

Instantly share code, notes, and snippets.

@fantasywind
Last active November 2, 2015 17:54
Show Gist options
  • Save fantasywind/6a9d3934dc3d5819055e to your computer and use it in GitHub Desktop.
Save fantasywind/6a9d3934dc3d5819055e to your computer and use it in GitHub Desktop.
Rytass ECMAScript Lint
{
"plugins": [
"react"
],
"ecmaFeatures": {
"jsx": true,
"modules": true
},
"env": {
"browser": true,
"amd": true,
"es6": true,
"node": true
},
"rules": {
"comma-dangle": [2, "always-multiline"],
"quotes": [ 1, "single" ],
"no-undef": 1,
"global-strict": 0,
"no-extra-semi": 1,
"no-underscore-dangle": 0,
"no-console": 1,
"no-unused-vars": 1,
"no-trailing-spaces": [1, { "skipBlankLines": true }],
"no-unreachable": 1,
"no-alert": 0,
"react/jsx-uses-react": 1
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment