35 lines
715 B
YAML
35 lines
715 B
YAML
env:
|
|
es6: true
|
|
node: true
|
|
|
|
extends:
|
|
- eslint:recommended
|
|
- plugin:node/recommended
|
|
- plugin:security/recommended
|
|
|
|
plugins:
|
|
- node
|
|
- security
|
|
|
|
root: true
|
|
|
|
rules:
|
|
node/no-deprecated-api: off
|
|
node/no-unsupported-features/es-syntax: off
|
|
node/no-unsupported-features/node-builtins: off
|
|
node/no-unpublished-require: off
|
|
|
|
security/detect-non-literal-fs-filename: off
|
|
security/detect-object-injection: off
|
|
|
|
eol-last: [error, always]
|
|
eqeqeq: error
|
|
no-alert: warn
|
|
no-console: warn
|
|
no-path-concat: error
|
|
no-unused-vars: [error, {argsIgnorePattern: "^_|err|event|next|reject"}]
|
|
no-var: error
|
|
one-var: [error, never]
|
|
prefer-const: error
|
|
quotes: [error, single, {avoidEscape: true}]
|