Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.eslintrc.yml - github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ca36a414f9fb86205782488481257231e68dbb17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
root: true

extends:
  - eslint:recommended

env:
  browser: true
  amd: true

globals:
  $: false
  escapeHTML: false
  OC: false
  OCA: false
  t: false
  Backbone: false
  _: false
  Clipboard: false
  oc_defaults: false
  Hashes: false

rules:
  curly: error
  eqeqeq: ["error", "smart"]
  guard-for-in: error
  no-console: off
  no-fallthrough: error
  no-mixed-spaces-and-tabs: error
  no-unused-vars: error
  no-use-before-define: error
  semi: ["error", "always"]