jquery/dist/.eslintrc.json
Matan Kotler-Berkowitz 70c715822b Build: Fix comment typo
Closes gh-3747
2017-08-08 18:08:02 -04:00

23 lines
491 B
JSON

{
"root": true,
"extends": "../.eslintrc-browser.json",
"rules": {
// That is okay for the built version
"no-multiple-empty-lines": "off",
// Because sizzle is not compatible to jquery code style
"no-nested-ternary": "off",
"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"
}
}