File: .eslintrc

package info (click to toggle)
node-file-sync-cmp 0.1.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 120 kB
  • sloc: javascript: 74; makefile: 2
file content (33 lines) | stat: -rw-r--r-- 476 bytes parent folder | download | duplicates (3)
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
32
33
# -*- yaml -*-
---
env:
  node: true

rules:
  quotes:
  - 2
  - single
  - avoid-escape
  global-strict:
  - 2
  - always
  space-in-brackets: 2
  space-in-parens: 2
  space-after-keywords:
  - 2
  - always
  - { checkFunctionKeyword: true }
  space-before-blocks: 2
  space-unary-ops: 2
  brace-style: 2
  comma-style: 2
  func-style:
  - 2
  - declaration
  no-lonely-if: 2
  no-trailing-spaces: 2
  no-multiple-empty-lines: 2
  max-len: 2
  padded-blocks:
  - 2
  - never