Advertisement
Guest User

Untitled

a guest
Apr 8th, 2017
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 5.54 KB | None | 0 0
  1. {
  2.     "ecmaFeatures": {},
  3.     "parser": "espree",
  4.     "env": {
  5.         "browser": false,
  6.         "node": false,
  7.         "amd": false,
  8.         "mocha": false,
  9.         "jasmine": false
  10.     },
  11.  
  12.     "rules": {
  13.         "no-alert": 2,
  14.         "no-array-constructor": 2,
  15.         "no-bitwise": 0,
  16.         "no-caller": 2,
  17.         "no-catch-shadow": 2,
  18.         "no-comma-dangle": 0,
  19.         "no-cond-assign": 2,
  20.         "no-console": 2,
  21.         "no-constant-condition": 2,
  22.         "no-continue": 0,
  23.         "no-control-regex": 2,
  24.         "no-debugger": 2,
  25.         "no-delete-var": 2,
  26.         "no-div-regex": 0,
  27.         "no-dupe-keys": 2,
  28.         "no-dupe-args": 2,
  29.         "no-duplicate-case": 2,
  30.         "no-else-return": 0,
  31.         "no-empty": 2,
  32.         "no-empty-class": 0,
  33.         "no-empty-character-class": 2,
  34.         "no-empty-label": 2,
  35.         "no-eq-null": 0,
  36.         "no-eval": 2,
  37.         "no-ex-assign": 2,
  38.         "no-extend-native": 2,
  39.         "no-extra-bind": 2,
  40.         "no-extra-boolean-cast": 2,
  41.         "no-extra-parens": 0,
  42.         "no-extra-semi": 2,
  43.         "no-extra-strict": 2,
  44.         "no-fallthrough": 2,
  45.         "no-floating-decimal": 0,
  46.         "no-func-assign": 2,
  47.         "no-implied-eval": 2,
  48.         "no-inline-comments": 0,
  49.         "no-inner-declarations": [2, "functions"],
  50.         "no-invalid-regexp": 2,
  51.         "no-irregular-whitespace": 2,
  52.         "no-iterator": 2,
  53.         "no-label-var": 2,
  54.         "no-labels": 2,
  55.         "no-lone-blocks": 2,
  56.         "no-lonely-if": 0,
  57.         "no-loop-func": 2,
  58.         "no-mixed-requires": [0, false],
  59.         "no-mixed-spaces-and-tabs": [2, false],
  60.         "linebreak-style": [0, "unix"],
  61.         "no-multi-spaces": 2,
  62.         "no-multi-str": 2,
  63.         "no-multiple-empty-lines": [0, {"max": 2}],
  64.         "no-native-reassign": 2,
  65.         "no-negated-in-lhs": 2,
  66.         "no-nested-ternary": 0,
  67.         "no-new": 2,
  68.         "no-new-func": 2,
  69.         "no-new-object": 2,
  70.         "no-new-require": 0,
  71.         "no-new-wrappers": 2,
  72.         "no-obj-calls": 2,
  73.         "no-octal": 2,
  74.         "no-octal-escape": 2,
  75.         "no-param-reassign": 0,
  76.         "no-path-concat": 0,
  77.         "no-plusplus": 0,
  78.         "no-process-env": 0,
  79.         "no-process-exit": 2,
  80.         "no-proto": 2,
  81.         "no-redeclare": 2,
  82.         "no-regex-spaces": 2,
  83.         "no-reserved-keys": 0,
  84.         "no-restricted-modules": 0,
  85.         "no-return-assign": 2,
  86.         "no-script-url": 2,
  87.         "no-self-compare": 0,
  88.         "no-sequences": 2,
  89.         "no-shadow": 2,
  90.         "no-shadow-restricted-names": 2,
  91.         "no-space-before-semi": 0,
  92.         "no-spaced-func": 2,
  93.         "no-sparse-arrays": 2,
  94.         "no-sync": 0,
  95.         "no-ternary": 0,
  96.         "no-trailing-spaces": 2,
  97.         "no-throw-literal": 0,
  98.         "no-undef": 2,
  99.         "no-undef-init": 2,
  100.         "no-undefined": 0,
  101.         "no-underscore-dangle": 2,
  102.         "no-unneeded-ternary": 0,
  103.         "no-unreachable": 2,
  104.         "no-unused-expressions": 2,
  105.         "no-unused-vars": [1, {"vars": "all", "args": "after-used"}],
  106.         "no-use-before-define": 0,
  107.         "no-void": 0,
  108.         "no-var": 0,
  109.         "no-warning-comments": [0, { "terms": ["todo", "fixme", "xxx"], "location": "start" }],
  110.         "no-with": 2,
  111.         "no-wrap-func": 2,
  112.  
  113.         "accessor-pairs": 0,
  114.         "block-scoped-var": 0,
  115.         "brace-style": [0, "1tbs"],
  116.         "camelcase": 2,
  117.         "comma-dangle": [2, "never"],
  118.         "comma-spacing": 2,
  119.         "comma-style": 0,
  120.         "complexity": [0, 11],
  121.         "consistent-return": 2,
  122.         "consistent-this": [0, "that"],
  123.         "curly": [2, "all"],
  124.         "default-case": 0,
  125.         "dot-location": 0,
  126.         "dot-notation": [2, { "allowKeywords": true }],
  127.         "eol-last": 1,
  128.         "eqeqeq": 2,
  129.         "func-names": 0,
  130.         "func-style": [0, "declaration"],
  131.         "generator-star": 0,
  132.         "generator-star-spacing": 0,
  133.         "global-strict": [2, "never"],
  134.         "guard-for-in": 0,
  135.         "handle-callback-err": 0,
  136.         "indent": 0,
  137.         "key-spacing": [2, { "beforeColon": false, "afterColon": true }],
  138.         "lines-around-comment": 0,
  139.         "max-depth": [0, 4],
  140.         "max-len": [0, 80, 4],
  141.         "max-nested-callbacks": [0, 2],
  142.         "max-params": [0, 3],
  143.         "max-statements": [0, 10],
  144.         "new-cap": 2,
  145.         "new-parens": 2,
  146.         "newline-after-var": 0,
  147.         "object-curly-spacing": [0, "never"],
  148.         "object-shorthand": 0,
  149.         "one-var": 0,
  150.         "operator-assignment": [0, "always"],
  151.         "operator-linebreak": 0,
  152.         "padded-blocks": 0,
  153.         "quote-props": 0,
  154.         "quotes": [2, "double"],
  155.         "radix": 0,
  156.         "semi": 1,
  157.         "semi-spacing": [2, {"before": false, "after": true}],
  158.         "sort-vars": 0,
  159.         "space-after-function-name": [0, "never"],
  160.         "space-after-keywords": [0, "always"],
  161.         "space-before-blocks": [0, "always"],
  162.         "space-before-function-paren": [0, "always"],
  163.         "space-before-function-parentheses": [0, "always"],
  164.         "space-in-brackets": [0, "never"],
  165.         "space-in-parens": [0, "never"],
  166.         "space-infix-ops": 2,
  167.         "space-return-throw-case": 2,
  168.         "space-unary-ops": [2, { "words": true, "nonwords": false }],
  169.         "spaced-line-comment": [0, "always"],
  170.         "strict": 2,
  171.         "use-isnan": 2,
  172.         "valid-jsdoc": 0,
  173.         "valid-typeof": 2,
  174.         "vars-on-top": 0,
  175.         "wrap-iife": 0,
  176.         "wrap-regex": 0,
  177.         "yoda": [2, "never"]
  178.     }
  179. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement