Skip to content

Commit

Permalink
Remove typescript source
Browse files Browse the repository at this point in the history
  • Loading branch information
hildjj committed May 13, 2023
1 parent ba9bd19 commit 34eeadb
Show file tree
Hide file tree
Showing 16 changed files with 680 additions and 898 deletions.
26 changes: 11 additions & 15 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
module.exports = {
root: true,
extends: ['@cto.af/eslint-config/typescript'],
extends: ['@cto.af/eslint-config/modules'],
ignorePatterns: [
'coverage/',
'docs/',
'lib/',
't.js'
'docs/'
],
env: {
es2020: true,
Expand All @@ -16,16 +14,14 @@ module.exports = {
project: 'tsconfig.json',
},
rules: {
'@typescript-eslint/no-unused-vars': ['error', {
varsIgnorePattern: '_',
}],
'no-unused-vars': [
'error', {
args: 'none',
argsIgnorePattern: '^_',
caughtErrors: 'all',
caughtErrorsIgnorePattern: '^ignore',
varsIgnorePattern: '^_',
},
],
},
overrides: [
{
files: ['*.js'],
extends: [
'@cto.af/eslint-config/modules',
],
},
],
}
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
coverage/
lib
node_modules/
7 changes: 0 additions & 7 deletions docs/assets/highlight.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@
--dark-hl-12: #D7BA7D;
--light-hl-13: #098658;
--dark-hl-13: #B5CEA8;
--light-hl-14: #267F99;
--dark-hl-14: #4EC9B0;
--light-code-background: #FFFFFF;
--dark-code-background: #1E1E1E;
}
Expand All @@ -48,7 +46,6 @@
--hl-11: var(--light-hl-11);
--hl-12: var(--light-hl-12);
--hl-13: var(--light-hl-13);
--hl-14: var(--light-hl-14);
--code-background: var(--light-code-background);
} }

Expand All @@ -67,7 +64,6 @@
--hl-11: var(--dark-hl-11);
--hl-12: var(--dark-hl-12);
--hl-13: var(--dark-hl-13);
--hl-14: var(--dark-hl-14);
--code-background: var(--dark-code-background);
} }

Expand All @@ -86,7 +82,6 @@
--hl-11: var(--light-hl-11);
--hl-12: var(--light-hl-12);
--hl-13: var(--light-hl-13);
--hl-14: var(--light-hl-14);
--code-background: var(--light-code-background);
}

Expand All @@ -105,7 +100,6 @@
--hl-11: var(--dark-hl-11);
--hl-12: var(--dark-hl-12);
--hl-13: var(--dark-hl-13);
--hl-14: var(--dark-hl-14);
--code-background: var(--dark-code-background);
}

Expand All @@ -123,5 +117,4 @@
.hl-11 { color: var(--hl-11); }
.hl-12 { color: var(--hl-12); }
.hl-13 { color: var(--hl-13); }
.hl-14 { color: var(--hl-14); }
pre, code { background: var(--code-background); }
2 changes: 1 addition & 1 deletion docs/assets/search.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 34eeadb

Please sign in to comment.