mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
6acf4a7946
`.eslintrc` format is deprecated - http://eslint.org/docs/user-guide/configuring#configuration-file-formats Fixes gh-3248 Closes gh-3247
20 lines
469 B
JSON
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"
|
|
}
|
|
}
|