thelounge/.eslintrc.yml

47 lines
854 B
YAML
Raw Normal View History

2015-10-01 00:15:19 +02:00
---
root: true
env:
browser: true
mocha: true
node: true
parserOptions:
ecmaVersion: 6
2015-10-01 00:15:19 +02:00
rules:
block-spacing: [2, always]
brace-style: [2, 1tbs]
2015-10-01 00:15:19 +02:00
comma-dangle: 0
curly: [2, all]
2015-10-01 00:15:19 +02:00
eqeqeq: 2
indent: [2, tab]
2016-06-05 20:48:34 +02:00
key-spacing: [2, {beforeColon: false, afterColon: true}]
keyword-spacing: [2, {before: true, after: true}]
2015-10-01 00:15:19 +02:00
linebreak-style: [2, unix]
no-console: 0
2016-06-05 20:48:34 +02:00
no-control-regex: 0
no-inner-declarations: 2
no-invalid-regexp: 2
no-irregular-whitespace: 2
2015-10-01 00:15:19 +02:00
no-trailing-spaces: 2
no-unexpected-multiline: 2
no-unreachable: 2
object-curly-spacing: [2, never]
quotes: [2, double, avoid-escape]
semi: [2, always]
space-before-blocks: 2
space-infix-ops: 2
spaced-comment: [2, always]
2015-10-01 00:15:19 +02:00
globals:
2016-04-16 13:32:38 +02:00
log: false
2015-10-01 00:15:19 +02:00
$: false
Favico: false
Handlebars: false
io: false
Mousetrap: false
extends: eslint:recommended