File: .eslintrc.yml

package info (click to toggle)
node-eslint-plugin-eslint-plugin 2.3.0%2B~0.3.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 652 kB
  • sloc: javascript: 5,372; makefile: 34; sh: 1
file content (20 lines) | stat: -rw-r--r-- 326 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
extends:
  - plugin:node/recommended

parserOptions:
  sourceType: script

plugins:
  - node

env:
  node: true

rules:
  comma-dangle: [error, always-multiline]
  function-paren-newline: [error, consistent]
  max-len: off
  prefer-rest-params: off
  prefer-spread: off
  no-restricted-syntax: off
  prefer-destructuring: off