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

.eslintrc.yaml « tools - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d9a7929836d91fbf53c85562bf8646c9859a2051 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
env:
  node: true
  es6: true

rules:
  camelcase:
    - error
    - properties: never
      ignoreDestructuring: true
      allow: [child_process]
  no-unused-vars:
    - error
    - args: after-used
  prefer-arrow-callback: error