-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- drop unused files - analysis.json - index.html - polymer.json - wct.conf.json - switch to karm - add karma problem matcher - switch github workflow to setup-node eslint problem matcher - update codeclimate conf - update vscode settings - add es-dev-server - upgrade deps - convert most tests to karma
- Loading branch information
1 parent
b258984
commit 174cdd4
Showing
23 changed files
with
16,097 additions
and
24,382 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"problemMatcher": [{ | ||
"owner": "karma-eval", | ||
"pattern": [{ | ||
"regexp": "^\\w+\\s\\d+\\.\\d+\\.\\d+\\s\\(\\w+\\s\\d+\\.\\d+\\.\\d+\\)\\sERROR$" | ||
}, { | ||
"regexp": "^\\s{2}(.*)$", | ||
"message": 1 | ||
}, { | ||
"regexp": "^\\s{2}at\\s([^:]*):(\\d+):(\\d+)$", | ||
"file": 1, | ||
"line": 2, | ||
"column": 3 | ||
}] | ||
}, { | ||
"owner": "karma-test-error", | ||
"pattern": [{ | ||
"regexp": "^\\w+\\s\\d+\\.\\d+\\.\\d+\\s\\(\\w+\\s\\d+\\.\\d+\\.\\d+\\)\\s(.*)FAILED$", | ||
"code": 1 | ||
}, { | ||
"regexp": "^\\t(.*)$", | ||
"message": 1 | ||
}, { | ||
"regexp": "^\\t {4}at\\s[^\\s]*\\s\\(([^:]*):(\\d+):(\\d+)\\)$", | ||
"file": 1, | ||
"line": 2, | ||
"column": 3 | ||
}] | ||
}] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,12 @@ | ||
|
||
{ | ||
"eslint.autoFixOnSave": true, | ||
"eslint.packageManager": "yarn", | ||
"eslint.validate": [ | ||
{ "language": "javascript", "autoFix": true }, | ||
{ "language": "html", "autoFix": true } | ||
], | ||
"eslint.validate": [ "javascript" ], | ||
"files.watcherExclude": { | ||
"**/.git/objects/**": true, | ||
"**/.git/subtree-cache/**": true, | ||
"**/node_modules/**": true, | ||
"**/bower_components/**": true | ||
"**/node_modules/**": true | ||
}, | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.eslint": true | ||
} | ||
} |
Oops, something went wrong.