.eslintrc.yml 784 Bytes
env:
  browser: true
extends: 'eslint:all'
globals:
  Ext: true
plugins:
  - extjs
rules:
  indent: [error, 2, SwitchCase: 1]
  semi: [warn, never]
  max-len: [error, code: 120]
  max-lines: [error, 600]
  linebreak-style: [error, unix]
  quotes: [error, single]
  strict: [error, global]
  quote-props: [error, as-needed]
  max-statements: [warn, 20]
  array-bracket-newline: [warn, consistent]
  consistent-this: [error, me]
  padded-blocks: off
  no-tabs: off
  no-warning-comments: off
  func-names: off
  function-paren-newline: off
  init-declarations: off
  sort-keys: off
  id-length: off
  no-magic-numbers: off
  no-invalid-this: off

# ES3/5 compatibility:
  prefer-template: off
  no-var: off
  prefer-arrow-callback: off
  object-shorthand: off
  prefer-rest-params: off