jquery/dist/.eslintrc

20 lines
464 B
Plaintext
Raw Normal View History

{
"extends": "../src/.eslintrc",
"rules": {
// That is okay for the built version
"no-multiple-empty-lines": "off",
// Because sizze is not compatible to jquery code style
"no-nested-ternary": "off",
2016-07-08 21:46:58 +00:00
"no-unused-expressions": "off",
"lines-around-comment": "off",
"space-in-parens": "off",
"camelcase": "off",
"computed-property-spacing": "off",
"max-len": "off",
"dot-notation": "off",
"semi-spacing": "off",
"brace-style": "off"
}
}