Skip to content

Commit 0588a88

Browse files
committed
Initial commit
0 parents  commit 0588a88

10 files changed

+1774
-0
lines changed

.editorconfig

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[*]
2+
insert_final_newline = true
3+
indent_style = space
4+
indent_size = 2

.eslintrc

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"parser": "@typescript-eslint/parser",
3+
"extends": ["airbnb-base", "prettier"],
4+
"plugins": ["@typescript-eslint", "prettier"],
5+
"rules": {
6+
"prettier/prettier": ["error"],
7+
"no-console": ["off"],
8+
"no-useless-constructor": ["off"],
9+
"@typescript-eslint/no-useless-constructor": ["error"],
10+
"no-unused-vars": ["off"],
11+
"@typescript-eslint/no-unused-vars": ["error"],
12+
"no-empty-function": ["off"],
13+
"@typescript-eslint/no-empty-function": ["error"],
14+
"no-else-return": ["off"]
15+
}
16+
}

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
dist

.prettierrc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"printWidth": 150,
3+
"singleQuote": true
4+
}

.vscode/settings.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"editor.formatOnSave": true,
3+
"eslint.autoFixOnSave": true,
4+
"eslint.validate": [
5+
"javascript",
6+
"javascriptreact",
7+
{
8+
"language": "html",
9+
"autoFix": true
10+
},
11+
{
12+
"language": "typescript",
13+
"autoFix": true
14+
}
15+
]
16+
}

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# TypeScript eslint prettier starter
2+
3+
A starter project to enable:
4+
5+
🚀 TypeScript for compilation and sanity
6+
✅ ESLint to keep your code in check
7+
✈ AirBnb eslint config as base, so you don't have to reinvent the wheel
8+
✨ Prettier to make stuff prettiest
9+
🤘 VS code integration so you don't have to worry about all of this none-sense

0 commit comments

Comments
 (0)