Blame view

js/.eslintrc.yml 787 Bytes
10dee819   Nathanael Jourdane   clean JobsMgr and...
1
2
3
4
5
6
7
8
9
env:
  browser: true
extends: 'eslint:all'
globals:
  Ext: true
plugins:
  - extjs
rules:
  indent: [error, 2, SwitchCase: 1]
34d41fb3   Nathanaël Jourdane   Fix eslint warnings
10
  semi: [error, always]
10dee819   Nathanael Jourdane   clean JobsMgr and...
11
  max-len: [error, code: 120]
34d41fb3   Nathanaël Jourdane   Fix eslint warnings
12
  max-lines: [warn, 600]
10dee819   Nathanael Jourdane   clean JobsMgr and...
13
14
15
16
17
  linebreak-style: [error, unix]
  quotes: [error, single]
  strict: [error, global]
  quote-props: [error, as-needed]
  max-statements: [warn, 20]
10dee819   Nathanael Jourdane   clean JobsMgr and...
18
19
  consistent-this: [error, me]
  padded-blocks: off
34d41fb3   Nathanaël Jourdane   Fix eslint warnings
20
  newline-per-chained-call: [error, ignoreChainWithDepth: 3]
10dee819   Nathanael Jourdane   clean JobsMgr and...
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
  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