diff options
| author | bozo.kopic <bozo.kopic@gmail.com> | 2019-04-08 22:47:10 +0200 |
|---|---|---|
| committer | bozo.kopic <bozo.kopic@gmail.com> | 2019-04-08 22:47:10 +0200 |
| commit | f53913389fa435d26307075bf5dab3675b1f17c4 (patch) | |
| tree | f70d5fd95070b6f1f5f427d2d43da7f77d000efa /.eslintrc.yml | |
| parent | 07dae145e814856c8f38f407d91a033b233c081d (diff) | |
dependencies update & minor fixes
Diffstat (limited to '.eslintrc.yml')
| -rw-r--r-- | .eslintrc.yml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.eslintrc.yml b/.eslintrc.yml new file mode 100644 index 0000000..e8ee5b7 --- /dev/null +++ b/.eslintrc.yml @@ -0,0 +1,26 @@ +env: + browser: true + node: true + commonjs: true + es6: true +extends: 'eslint:recommended' +parserOptions: + sourceType: module + ecmaVersion: 8 +rules: + indent: + - error + - 4 + - ArrayExpression: off + SwitchCase: 1 + CallExpression: + arguments: first + no-unused-vars: + - error + - argsIgnorePattern: ^_$ + semi: + - error + - always + linebreak-style: + - error + - unix |
