1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2024-10-27 20:34:29 +00:00
tobspr_shapez.io/.eslintrc.yml

26 lines
530 B
YAML
Raw Normal View History

2020-05-27 12:17:25 +00:00
env:
2020-05-28 07:37:57 +00:00
browser: true
es6: true
2020-05-27 12:17:25 +00:00
extends:
2020-05-28 07:37:57 +00:00
- "eslint:recommended"
- "plugin:@typescript-eslint/eslint-recommended"
- "prettier"
2020-05-27 12:17:25 +00:00
globals:
2020-05-28 07:37:57 +00:00
Atomics: readonly
SharedArrayBuffer: readonly
parser: "@typescript-eslint/parser"
2020-05-27 12:17:25 +00:00
parserOptions:
2020-05-28 07:37:57 +00:00
ecmaVersion: 6
sourceType: "module"
ecmaFeatures:
- modules: true
2020-05-27 12:17:25 +00:00
plugins:
2020-05-28 07:37:57 +00:00
- "@typescript-eslint"
- "prettier"
rules:
prettier/prettier: error
no-undef: off
no-unused-vars: off
no-prototype-builtins: off
linebreak-style: off