Skip to content

Commit 3e6cfa2

Browse files
committed
Merge remote-tracking branch 'template-jasmine/master' into v2.0.0
2 parents 8a8c1c7 + defd438 commit 3e6cfa2

7 files changed

Lines changed: 2233 additions & 4551 deletions

File tree

.editorconfig

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Editor configuration, see http://editorconfig.org
1+
# Editor configuration, see https://editorconfig.org
22
root = true
33

44
[*]
@@ -9,6 +9,9 @@ max_line_length = 80
99
insert_final_newline = true
1010
trim_trailing_whitespace = true
1111

12+
[*.ts]
13+
quote_type = single
14+
1215
[*.md]
1316
max_line_length = off
14-
trim_trailing_whitespace = false
17+
trim_trailing_whitespace = false

.eslintrc.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ module.exports = {
2424
"no-eval": 2,
2525
"no-trailing-spaces": 1,
2626
"no-irregular-whitespace": 1,
27+
"no-mixed-spaces-and-tabs": 1,
2728
"no-prototype-builtins": 1,
2829
"no-use-before-define": 1,
2930
"no-useless-escape": 1,
@@ -36,9 +37,11 @@ module.exports = {
3637
"@typescript-eslint/brace-style": [2, "stroustrup"],
3738
"@typescript-eslint/no-empty-function": 0,
3839
"@typescript-eslint/no-empty-interface": 1,
40+
"@typescript-eslint/no-explicit-any": 1,
3941
"@typescript-eslint/no-floating-promises": 2,
4042
"@typescript-eslint/no-misused-new": 2,
4143
"@typescript-eslint/no-namespace": 1,
44+
"@typescript-eslint/no-unused-vars": 1,
4245
"@typescript-eslint/promise-function-async": 1,
4346
"@typescript-eslint/no-var-requires": 2,
4447
},

.vscode/extensions.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846
3+
"recommendations": ["rvest.vs-code-prettier-eslint"]
4+
}

0 commit comments

Comments
 (0)