Skip to content

Commit

Permalink
add overlayscrollbars-vue
Browse files Browse the repository at this point in the history
  • Loading branch information
KingSora committed Oct 19, 2022
1 parent 074e367 commit bdb2874
Show file tree
Hide file tree
Showing 17 changed files with 8,935 additions and 216 deletions.
17 changes: 16 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,12 +128,27 @@ module.exports = {
},
},
{
files: ['*.test.*', '**/tests/**'],
files: ['*.test.*.ts', '**/test/**/*.ts'],
extends: [...defaultExtends, 'plugin:@typescript-eslint/recommended'],
plugins: defaultPlugins,
parser: '@typescript-eslint/parser',
parserOptions: {
tsconfigRootDir: __dirname,
project: [
'./packages/**/tsconfig.json',
'./examples/**/tsconfig.json',
'./website/**/tsconfig.json',
'./local/**/tsconfig.json',
],
},
rules: {
...defaultRules,
'no-shadow': 'off',
'no-use-before-define': 'off',
'no-restricted-syntax': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/ban-types': 'off',
'@typescript-eslint/no-floating-promises': 'off',
Expand Down
1 change: 1 addition & 0 deletions examples/overlayscrollbars-ngx/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ yarn-error.log
.history/*

# Miscellaneous
/.angular
/.angular/cache
.sass-cache/
/connect.lock
Expand Down
Loading

0 comments on commit bdb2874

Please sign in to comment.