forked from hathora/builder
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.cjs
34 lines (34 loc) · 918 Bytes
/
.eslintrc.cjs
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
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaVersion: "latest",
sourceType: "module",
},
plugins: ["@typescript-eslint", "eslint-plugin-import", "prettier"],
rules: {
"prettier/prettier": ["error", { printWidth: 120 }],
indent: ["error", 2],
"linebreak-style": ["error", "unix"],
quotes: ["error", "double"],
semi: ["error", "always"],
"import/order": [
"error",
{
groups: ["builtin", "external", "internal", "parent", "sibling", "index", "object", "type"],
"newlines-between": "always",
alphabetize: {
order: "desc",
caseInsensitive: true,
},
},
],
curly: ["error"],
"arrow-parens": ["error"],
"arrow-spacing": ["error"],
},
};