Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
8 changes: 0 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1 @@
.DS_Store
.dccache
.idea
.nyc_output
coverage
node_modules
npm-debug.log
*~
.npmrc
7 changes: 7 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
node_modules/
dist/
build/
artifacts/
coverage/
yarn.lock
.git/
4 changes: 4 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"printWidth": 100,
"singleQuote": true
}
208 changes: 0 additions & 208 deletions Changelog.md

This file was deleted.

21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

41 changes: 0 additions & 41 deletions Readme.md

This file was deleted.

1 change: 0 additions & 1 deletion dist/bootstrap3.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/bootstrap4.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/bootstrap5.js

This file was deleted.

14 changes: 14 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import globals from 'globals';
import pluginJs from '@eslint/js';
import eslintConfigPrettier from 'eslint-config-prettier';
import tseslint from 'typescript-eslint';

/** @type {import('eslint').Linter.Config[]} */
export default [
{ ignores: ['node_modules', 'build', 'lib'] },
{ files: ['**/*.{js,jsx,mjs,cjs,ts,tsx}'] },
{ languageOptions: { globals: globals.browser } },
pluginJs.configs.recommended,
...tseslint.configs.recommended,
eslintConfigPrettier,
];
41 changes: 0 additions & 41 deletions gulpfile.js

This file was deleted.

Loading
Loading