Advertisement
Guest User

.eslintrc

a guest
Feb 8th, 2016
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.78 KB | None | 0 0
  1. ---
  2.   env:
  3.     browser: true
  4.     node: true
  5.     jquery: true
  6.     mocha: true
  7.     jasmine: true
  8.   ecmaFeatures:
  9.     jsx: true
  10.   globals:
  11.     _: false
  12.     EventEmitter: false
  13.     Flux: false
  14.     React: false
  15.     ReactRouter: false
  16.   rules:
  17.     camelcase:
  18.      - 1
  19.       - properties: never
  20.     comma-dangle: 0
  21.     eqeqeq: 1
  22.     guard-for-in: 1
  23.     max-len:
  24.      - 1
  25.       - 80
  26.       - 4
  27.     no-alert: 0
  28.     no-cond-assign: 2
  29.     no-console: 0
  30.     no-constant-condition: 1
  31.     no-control-regex: 2
  32.     no-debugger: 1
  33.     no-delete-var: 1
  34.     no-dupe-args: 2
  35.     no-dupe-keys: 2
  36.     no-duplicate-case: 2
  37.     no-else-return: 0
  38.     no-empty-character-class: 2
  39.     no-empty: 1
  40.     no-eq-null: 1
  41.     no-eval: 1
  42.     no-ex-assign: 2
  43.     no-extend-native: 0
  44.     no-extra-bind: 1
  45.     no-extra-boolean-cast: 2
  46.     no-extra-parens: 0
  47.     no-extra-semi: 2
  48.     no-fallthrough: 1
  49.     no-func-assign: 2
  50.     no-implicit-coercion: 1
  51.     no-inner-declarations: 2
  52.     no-invalid-regexp: 2
  53.     no-invalid-this: 1
  54.     no-irregular-whitespace: 2
  55.     no-label-var: 2
  56.     no-lone-blocks: 1
  57.     no-loop-func: 1
  58.     no-native-reassign: 1
  59.     no-negated-in-lhs: 2
  60.     no-obj-calls: 2
  61.     no-octal: 1
  62.     no-param-reassign: 0
  63.     no-proto: 2
  64.     no-redeclare: 1
  65.     no-regex-spaces: 2
  66.     no-return-assign: 2
  67.     no-shadow-restricted-names: 2
  68.     no-shadow: 2
  69.     no-sparse-arrays: 2
  70.     no-undef: 2
  71.     no-undefined: 0
  72.     no-unexpected-multiline: 1
  73.     no-unreachable: 2
  74.     no-unused-expressions: 1
  75.     no-unused-vars: 0
  76.     no-use-before-define: 0
  77.     no-useless-call: 1
  78.     no-warning-comments: 1
  79.     no-with: 2
  80.     quotes: 0
  81.     semi:
  82.      - 2
  83.       - always
  84.     strict: 0
  85.     use-isnan: 1
  86.     valid-typeof: 2
  87.     vars-on-top: 0
  88.     wrap-iife: 0
  89.     yoda: 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement