-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.js
More file actions
28 lines (28 loc) · 755 Bytes
/
.eslintrc.js
File metadata and controls
28 lines (28 loc) · 755 Bytes
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
// eslint-disable-next-line no-undef
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
],
ignorePatterns: ["scripts/**/", "experimental/**/"],
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaVersion: "latest",
sourceType: "module",
project: './tsconfig.json',
},
plugins: ["@typescript-eslint", "prettier"],
rules: {
"@typescript-eslint/no-floating-promises": "error",
"prettier/prettier": "error",
"linebreak-style": ["error", "unix"],
"no-console": ["error", { allow: ["warn", "error"] }],
quotes: ["error", "single"],
semi: ["error", "always"],
},
};