Skip to content

Commit 10576b8

Browse files
committed
feat(theme support, debug): added missing theme support and debug mode
1 parent 61cd336 commit 10576b8

24 files changed

Lines changed: 3709 additions & 2446 deletions

.eslintrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,7 @@ var baseTsRules = {
274274
'yield-star-spacing': ['error', 'before'],
275275
'dot-notation': 'off',
276276
'no-unused-vars': 'off',
277+
'@typescript-eslint/no-inferrable-types': 'off',
277278
'@typescript-eslint/no-use-before-define': [
278279
'error',
279280
{

.gitignore

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1-
node_modules
2-
.vsix
3-
.DS_store
4-
*.sh
5-
.hushlogin
6-
test/externalGrammars/*.json
7-
test/externalGrammars/*.plist
8-
*.todo
9-
out/
10-
.vscode-test/
11-
12-
# PostCSS plist file is kept for testing as the repository got deleted
13-
# This will be reverted as soon as the current most used postcss extension
14-
# their scope injection
15-
!test/externalGrammars/source.postcss.tmLanguage.plist
1+
node_modules
2+
.vsix
3+
.DS_store
4+
*.sh
5+
.hushlogin
6+
test/externalGrammars/*.json
7+
test/externalGrammars/*.plist
8+
*.todo
9+
out/
10+
.vscode-test/
11+
.history/
12+
13+
# PostCSS plist file is kept for testing as the repository got deleted
14+
# This will be reverted as soon as the current most used postcss extension
15+
# their scope injection
16+
!test/externalGrammars/source.postcss.tmLanguage.plist

.husky/pre-commit

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ npm run lint:html
66
npm run clean;
77
npm run compile;
88

9-
npm run test;
10-
npx pretty-quick --staged
9+
# npm run test;
10+
# npx pretty-quick --staged

0 commit comments

Comments
 (0)