Skip to content

Commit 1420550

Browse files
committed
Added prettier & eslint
1 parent 56a01fc commit 1420550

File tree

13 files changed

+4641
-1772
lines changed

13 files changed

+4641
-1772
lines changed

.eslintrc

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "plugin:@stencil-community/recommended", "prettier"],
3+
"parser": "@typescript-eslint/parser",
4+
"parserOptions": {
5+
"project": "./tsconfig.json"
6+
},
7+
"root": true,
8+
"plugins": ["@typescript-eslint"],
9+
"rules": {
10+
"@stencil-community/strict-boolean-conditions": "off",
11+
"react/jsx-no-bind": "off"
12+
}
13+
}

.prettierrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
"tabWidth": 2,
1111
"trailingComma": "all",
1212
"useTabs": false
13-
}
13+
}

0 commit comments

Comments
 (0)