mirror of
https://github.com/MingweiSamuel/Riven.git
synced 2025-01-15 05:17:27 -08:00
74eb5fa045
- `example/proxy` is new folder for `example_proxy`. - `riven` is new folder for the main riven lib. - Updated metadata to be an array and include HTTP method.
24 lines
523 B
YAML
24 lines
523 B
YAML
env:
|
|
node: true
|
|
extends: 'eslint:recommended'
|
|
globals:
|
|
define: false
|
|
parserOptions:
|
|
ecmaVersion: 5
|
|
rules:
|
|
no-trailing-spaces: 2
|
|
linebreak-style: [ 2, unix ]
|
|
semi: [ 2, always ]
|
|
valid-jsdoc: [ 2, { requireReturn: false } ]
|
|
no-unused-vars: [ 2, { args: none } ]
|
|
no-console: 0
|
|
block-scoped-var: 2
|
|
dot-location: [ 2, property ]
|
|
dot-notation: 2
|
|
no-else-return: 2
|
|
no-eq-null: 2
|
|
no-fallthrough: 2
|
|
no-return-assign: 2
|
|
no-use-before-define: [ 2, nofunc ]
|
|
no-path-concat: 2
|
|
no-useless-escape: 0
|