salix/.eslintrc.yml

30 lines
631 B
YAML
Raw Normal View History

2018-10-29 14:46:14 +00:00
extends: [eslint:recommended, google, plugin:jasmine/recommended]
parserOptions:
2018-08-14 06:05:17 +00:00
ecmaVersion: 2018
2018-10-25 11:26:39 +00:00
sourceType: "module"
plugins:
- jasmine
env:
jasmine: true
rules:
require-jsdoc: 0
2017-03-07 12:01:24 +00:00
no-undef: 0
max-len: 0
eqeqeq: 0
2017-03-07 12:01:24 +00:00
operator-linebreak: 0
2017-03-07 16:11:56 +00:00
radix: 0
guard-for-in: 0
2017-05-17 19:23:47 +00:00
camelcase: 0
2017-05-18 15:35:07 +00:00
default-case: 0
2017-05-26 11:14:47 +00:00
no-eq-null: 0
2017-10-13 14:23:00 +00:00
no-console: 0
no-warning-comments: 0
no-empty: [error, allowEmptyCatch: true]
2018-08-14 09:36:10 +00:00
complexity: 0
max-depth: 0
2018-10-29 14:46:14 +00:00
comma-dangle: 0
bracketSpacing: 0
space-infix-ops: 1
prefer-const: 0
curly: ["error", "multi-or-nest"]
indent: [error, 4]