Skip to content

Commit 3d6a1cc

Browse files
Initial move to @flamework org
0 parents  commit 3d6a1cc

9 files changed

+4195
-0
lines changed

.eslintrc.json

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"parser": "@typescript-eslint/parser",
3+
"parserOptions": {
4+
"jsx": true,
5+
"useJSXTextNode": true,
6+
"ecmaVersion": 2018,
7+
"sourceType": "module",
8+
"project": "./tsconfig.json"
9+
},
10+
"plugins": [
11+
"@typescript-eslint",
12+
"roblox-ts",
13+
"prettier"
14+
],
15+
"extends": [
16+
"plugin:@typescript-eslint/recommended",
17+
"plugin:roblox-ts/recommended",
18+
"plugin:prettier/recommended"
19+
],
20+
"rules": {
21+
"prettier/prettier": [
22+
"warn",
23+
{
24+
"semi": true,
25+
"trailingComma": "all",
26+
"singleQuote": false,
27+
"printWidth": 120,
28+
"tabWidth": 4,
29+
"useTabs": true
30+
}
31+
],
32+
"roblox-ts/no-array-pairs": "off"
33+
}
34+
}

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/node_modules
2+
/out
3+
/include
4+
*.tsbuildinfo
5+
flamework.build

.vscode/extensions.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"recommendations": [
3+
"roblox-ts.vscode-roblox-ts",
4+
"dbaeumer.vscode-eslint"
5+
]
6+
}

.vscode/settings.json

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"[typescript]": {
3+
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
4+
"editor.formatOnSave": true
5+
},
6+
"[typescriptreact]": {
7+
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
8+
"editor.formatOnSave": true
9+
},
10+
"eslint.run": "onType",
11+
"eslint.format.enable": true,
12+
"typescript.tsdk": "node_modules/typescript/lib"
13+
}

default.project.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"name": "networking",
3+
"globIgnorePaths": [
4+
"**/package.json",
5+
"**/tsconfig.json"
6+
],
7+
"tree": {
8+
"$path": "out"
9+
}
10+
}

0 commit comments

Comments
 (0)