-
Notifications
You must be signed in to change notification settings - Fork 0
/
eslint.yaml
39 lines (32 loc) · 1.25 KB
/
eslint.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
##
## GemstoneJS -- Gemstone JavaScript Technology Stack
## Copyright (c) 2016-2019 Gemstone Project <http://gemstonejs.com>
## Licensed under Apache License 2.0 <https://spdx.org/licenses/Apache-2.0>
##
extends:
- eslint:recommended
- eslint-config-standard
parserOptions:
ecmaVersion: 8
sourceType: module
parser: babel-eslint
env:
browser: true
node: true
commonjs: true
globals:
process: true
rules:
indent: [ "error", 4, { "SwitchCase": 1 } ]
linebreak-style: [ "error", "unix" ]
semi: [ "error", "never" ]
operator-linebreak: [ "error", "after", { "overrides": { "&&": "before", "||": "before", ":": "before" } } ]
brace-style: [ "error", "stroustrup", { "allowSingleLine": true } ]
quotes: [ "error", "double" ]
no-multi-spaces: off
no-multiple-empty-lines: off
key-spacing: off
object-property-newline: off
curly: off
space-in-parens: off
array-bracket-spacing: off