mirror of
https://github.com/bower/bower.git
synced 2026-04-24 03:00:19 -04:00
52 lines
1.2 KiB
Plaintext
52 lines
1.2 KiB
Plaintext
{
|
|
"env": {
|
|
"node": true,
|
|
"mocha": true
|
|
},
|
|
"rules": {
|
|
"no-bitwise": 0,
|
|
"curly": 0,
|
|
"eqeqeq": 0,
|
|
"guard-for-in": 0,
|
|
"no-use-before-define": 0,
|
|
"no-caller": 2,
|
|
"no-new": 2,
|
|
"no-plusplus": 0,
|
|
"no-undef": 2,
|
|
"no-unused-vars": 0,
|
|
"strict": 0,
|
|
"semi": 0,
|
|
"comma-spacing": 2,
|
|
"quote-props": [2, "as-needed"],
|
|
"quotes": [2, "single", "avoid-escape"],
|
|
"no-cond-assign": [ 2, "except-parens" ],
|
|
"no-debugger": 2,
|
|
"no-dupe-args": 2,
|
|
"no-dupe-keys": 2,
|
|
"no-duplicate-case": 2,
|
|
"no-unreachable": 2,
|
|
"valid-typeof": 2,
|
|
"no-fallthrough": 2,
|
|
"no-ex-assign": 2,
|
|
"no-eq-null": 0,
|
|
"no-eval": 0,
|
|
"no-unused-expressions": 0,
|
|
"block-scoped-var": 0,
|
|
"no-iterator": 0,
|
|
"no-loop-func": 2,
|
|
"no-script-url": 0,
|
|
"no-shadow": 0,
|
|
"no-new-func": 2,
|
|
"no-new-wrappers": 2,
|
|
"no-invalid-this": 0,
|
|
"space-before-blocks": [2, "always"],
|
|
"space-before-function-paren": [2, "never"],
|
|
"space-infix-ops": 2,
|
|
"keyword-spacing": 2,
|
|
"new-parens": 2,
|
|
"no-multiple-empty-lines": [2, { max: 2}],
|
|
"eol-last": 2,
|
|
"no-trailing-spaces": 2
|
|
}
|
|
}
|