Skip to content

Commit

Permalink
feat(theme support, debug): added missing theme support and debug mode
Browse files Browse the repository at this point in the history
  • Loading branch information
ghaschel committed Nov 20, 2023
1 parent 61cd336 commit 10576b8
Show file tree
Hide file tree
Showing 24 changed files with 3,709 additions and 2,446 deletions.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,7 @@ var baseTsRules = {
'yield-star-spacing': ['error', 'before'],
'dot-notation': 'off',
'no-unused-vars': 'off',
'@typescript-eslint/no-inferrable-types': 'off',
'@typescript-eslint/no-use-before-define': [
'error',
{
Expand Down
31 changes: 16 additions & 15 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
node_modules
.vsix
.DS_store
*.sh
.hushlogin
test/externalGrammars/*.json
test/externalGrammars/*.plist
*.todo
out/
.vscode-test/

# PostCSS plist file is kept for testing as the repository got deleted
# This will be reverted as soon as the current most used postcss extension
# their scope injection
!test/externalGrammars/source.postcss.tmLanguage.plist
node_modules
.vsix
.DS_store
*.sh
.hushlogin
test/externalGrammars/*.json
test/externalGrammars/*.plist
*.todo
out/
.vscode-test/
.history/

# PostCSS plist file is kept for testing as the repository got deleted
# This will be reverted as soon as the current most used postcss extension
# their scope injection
!test/externalGrammars/source.postcss.tmLanguage.plist
4 changes: 2 additions & 2 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ npm run lint:html
npm run clean;
npm run compile;

npm run test;
npx pretty-quick --staged
# npm run test;
# npx pretty-quick --staged
Loading

0 comments on commit 10576b8

Please sign in to comment.