jquery/dist/.eslintrc.json
Oleg Gaidarenko 6acf4a7946 Build: .eslintrc -> .eslintrc.json
`.eslintrc` format is deprecated -
http://eslint.org/docs/user-guide/configuring#configuration-file-formats

Fixes gh-3248
Closes gh-3247
2016-08-02 21:16:20 +03:00

20 lines
469 B
JSON

{
"extends": "../src/.eslintrc.json",
"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",
"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"
}
}